mirror of
https://github.com/fluencelabs/redis
synced 2025-03-30 22:31:03 +00:00
RESP3: bitops.c updated.
This commit is contained in:
parent
317f8b9d38
commit
3a3d806989
@ -1002,7 +1002,7 @@ void bitfieldCommand(client *c) {
|
|||||||
highest_write_offset)) == NULL) return;
|
highest_write_offset)) == NULL) return;
|
||||||
}
|
}
|
||||||
|
|
||||||
addReplyMultiBulkLen(c,numops);
|
addReplyArrayLen(c,numops);
|
||||||
|
|
||||||
/* Actually process the operations. */
|
/* Actually process the operations. */
|
||||||
for (j = 0; j < numops; j++) {
|
for (j = 0; j < numops; j++) {
|
||||||
@ -1047,7 +1047,7 @@ void bitfieldCommand(client *c) {
|
|||||||
setSignedBitfield(o->ptr,thisop->offset,
|
setSignedBitfield(o->ptr,thisop->offset,
|
||||||
thisop->bits,newval);
|
thisop->bits,newval);
|
||||||
} else {
|
} else {
|
||||||
addReply(c,shared.nullbulk);
|
addReplyNull(c);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
uint64_t oldval, newval, wrapped, retval;
|
uint64_t oldval, newval, wrapped, retval;
|
||||||
@ -1076,7 +1076,7 @@ void bitfieldCommand(client *c) {
|
|||||||
setUnsignedBitfield(o->ptr,thisop->offset,
|
setUnsignedBitfield(o->ptr,thisop->offset,
|
||||||
thisop->bits,newval);
|
thisop->bits,newval);
|
||||||
} else {
|
} else {
|
||||||
addReply(c,shared.nullbulk);
|
addReplyNull(c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
changes++;
|
changes++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user