We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 511347c commit c6ac842Copy full SHA for c6ac842
src/ds.c
@@ -2029,7 +2029,7 @@ void rl_hgetset(redisClient *c) {
2029
return;
2030
}
2031
2032
-void rl_hmget(reddisClient *c) {
+void rl_hmget(redisClient *c) {
2033
robj *o;
2034
int i;
2035
@@ -2090,7 +2090,7 @@ void rl_hmget(reddisClient *c) {
2090
} else if (val_len > 0) {
2091
2092
str = sdscatprintf(str, "$%zu\r\n", val_len);
2093
- str = sdscatlen(str, value, val_len);
+ str = sdscatlen(str, lvalue, val_len);
2094
str = sdscatlen(str, "\r\n", 2);
2095
2096
leveldb_free(lvalue);
0 commit comments