Commit dc858469 authored by zionwu's avatar zionwu
Browse files

fix issue 1787

parent 39603a7e
...@@ -1333,6 +1333,7 @@ void zremCommand(redisClient *c) { ...@@ -1333,6 +1333,7 @@ void zremCommand(redisClient *c) {
zobj->ptr = zzlDelete(zobj->ptr,eptr); zobj->ptr = zzlDelete(zobj->ptr,eptr);
if (zzlLength(zobj->ptr) == 0) { if (zzlLength(zobj->ptr) == 0) {
dbDelete(c->db,key); dbDelete(c->db,key);
keyremoved = 1;
break; break;
} }
} }
...@@ -1356,6 +1357,7 @@ void zremCommand(redisClient *c) { ...@@ -1356,6 +1357,7 @@ void zremCommand(redisClient *c) {
if (htNeedsResize(zs->dict)) dictResize(zs->dict); if (htNeedsResize(zs->dict)) dictResize(zs->dict);
if (dictSize(zs->dict) == 0) { if (dictSize(zs->dict) == 0) {
dbDelete(c->db,key); dbDelete(c->db,key);
keyremoved = 1;
break; break;
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment