zhenwu1981
Results
1
issues of
zhenwu1981
void redis_sentinel_release(redis_sentinel *context) { redis_sentinel_node *curr = context->list; redis_sentinel_node *next; while (curr) { next = curr->next; free(curr->addr.host); free(curr); curr = next; } free(context); } may have bug,redis_sentinel the name member...