Jdesk / memcached

Automatically exported from code.google.com/p/memcached
0 stars 0 forks source link

stats reset with binary protocol #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
file: memcached.c
function: static void process_bin_stat(conn *c)
defect code: } else if (strcmp(subcommand, "reset") == 0) {
correct code: } else if (strncmp(subcommand, "reset", 5) == 0) {

Original issue reported on code.google.com by victor.k...@sun.com on 26 Nov 2008 at 10:23

GoogleCodeExporter commented 9 years ago
Fixed in http://github.com/dustin/memcached/commit/63ab456

Original comment by dsalli...@gmail.com on 21 Dec 2008 at 12:52