]> git.saurik.com Git - redis.git/commit
Update src/redis-benchmark.c
authorNanXiao <xn212516@163.com>
Wed, 10 Oct 2012 09:08:43 +0000 (17:08 +0800)
committerantirez <antirez@gmail.com>
Thu, 18 Oct 2012 09:05:47 +0000 (11:05 +0200)
commita03c32702b87b99079db1c2083f023dd1f0fc863
treea25be27a27f5323e214b3ed8512defb1ba166a40
parent21645232444ddfffcdd27563bb751f266f7e1be8
Update src/redis-benchmark.c

The code of current implementation:

if (c->pending == 0) clientDone(c);
In clientDone function, the c's memory has been freed, then the loop will continue: while(c->pending). The memory of c has been freed now, so c->pending is invalid (c is an invalid pointer now), and this will cause memory dump in some platforams(eg: Solaris).

So I think the code should be modified as:
if (c->pending == 0)
{
clientDone(c);
break;
}
and this will not lead to while(c->pending).
src/redis-benchmark.c