Skip to content

Commit

Permalink
Update tcp_client.c
Browse files Browse the repository at this point in the history
  • Loading branch information
liudf0716 authored Apr 21, 2017
1 parent 1ec4fcc commit 37f6e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcp_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static void clean_useless_client()
jwHashEntry *entry = table->bucket[i];
while(entry) {
jwHashEntry *next = entry->next
iqueue_list *list = entry->value.ptrValue;
iqueue_head *list = entry->value.ptrValue;
if (list && iqueue_is_empty(list)) {
free(entry->value.strValue);
free(entry->key.strValue);
Expand Down

0 comments on commit 37f6e71

Please sign in to comment.