File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -479,7 +479,7 @@ class Redis {
479
479
redisReply *reply =
480
480
static_cast <redisReply*>(redisCommandNULLSafe (prc_, " LREM %s %d %b" ,
481
481
key.c_str (), count,
482
- x.begin (), x.size ()*szdb ));
482
+ x.begin (), x.size ()));
483
483
SEXP rep = extract_reply (reply);
484
484
freeReplyObject (reply);
485
485
return (rep);
@@ -596,7 +596,7 @@ class Redis {
596
596
redisReply *reply =
597
597
static_cast <redisReply*>(redisCommandNULLSafe (prc_, " LPUSH %s %b" ,
598
598
key.c_str (), x.begin (),
599
- x.size ()*szdb ));
599
+ x.size ()));
600
600
601
601
602
602
SEXP rep = extract_reply (reply);
@@ -614,7 +614,7 @@ class Redis {
614
614
redisReply *reply =
615
615
static_cast <redisReply*>(redisCommandNULLSafe (prc_, " RPUSH %s %b" ,
616
616
key.c_str (), x.begin (),
617
- x.size ()*szdb ));
617
+ x.size ()));
618
618
619
619
SEXP rep = extract_reply (reply);
620
620
freeReplyObject (reply);
You can’t perform that action at this time.
0 commit comments