Skip to content

Commit

Permalink
[core] remove an excess check
Browse files Browse the repository at this point in the history
  • Loading branch information
gstrauss committed Apr 2, 2021
1 parent 9ee17ae commit 91b3b3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ void chunkqueue_append_mem_min(chunkqueue * const restrict cq, const char * cons


void chunkqueue_append_chunkqueue(chunkqueue * const restrict cq, chunkqueue * const restrict src) {
if (src == NULL || NULL == src->first) return;
if (NULL == src->first) return;

if (NULL == cq->first) {
cq->first = src->first;
Expand Down

0 comments on commit 91b3b3b

Please sign in to comment.