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
bbaf76ea
Commit
bbaf76ea
authored
Jan 31, 2011
by
Pieter Noordhuis
Browse files
Clarify comment
parent
669f302e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_list.c
View file @
bbaf76ea
...
@@ -826,7 +826,7 @@ int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele) {
...
@@ -826,7 +826,7 @@ int handleClientsWaitingListPush(redisClient *c, robj *key, robj *ele) {
addReplyBulk(receiver,ele);
addReplyBulk(receiver,ele);
return 1;
return 1;
} else {
} else {
/* BRPOPLPUSH */
/* BRPOPLPUSH
, note that receiver->db is always equal to c->db.
*/
dstobj = lookupKeyWrite(receiver->db,dstkey);
dstobj = lookupKeyWrite(receiver->db,dstkey);
if (dstobj && checkType(receiver,dstobj,REDIS_LIST)) {
if (dstobj && checkType(receiver,dstobj,REDIS_LIST)) {
decrRefCount(dstkey);
decrRefCount(dstkey);
...
...
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