Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 323 by [email protected]: Memcache.c function conn *conn_new in
line 421 there is an condition error
http://code.google.com/p/memcached/issues/detail?id=323
What steps will reproduce the problem?
1.
2.
3.
What is the expected output? What do you see instead?
What version of the product are you using? On what operating system?
Please provide any additional information below.
See Memcache.c function conn *conn_new line 421
if (event_add(&c->event, 0) == -1) {
if (conn_add_to_freelist(c)) { ------should be
------ if
(!conn_add_to_freelist(c))
conn_free(c);
}
perror("event_add");
return NULL;
}
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
---
You received this message because you are subscribed to the Google Groups "memcached" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.