Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
1e221d10
Commit
1e221d10
authored
Jun 06, 2014
by
Salvatore Sanfilippo
Browse files
Merge pull request #1788 from zionwu/unstable
fix issue 1787
parents
14fb0ac6
dc858469
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_zset.c
View file @
1e221d10
...
@@ -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;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment