Thanks to visit codestin.com Credit goes to github.com
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 6915597 commit e3b2a46Copy full SHA for e3b2a46
redis_array.c
@@ -715,7 +715,7 @@ PHP_METHOD(RedisArray, mget)
715
int *pos, argc, *argc_each;
716
HashTable *h_keys;
717
HashPosition pointer;
718
- zval **redis_instances, *redis_inst, **argv;
+ zval **redis_instances, **argv;
719
720
/* Multi/exec support */
721
HANDLE_MULTI_EXEC("MGET");
@@ -771,8 +771,6 @@ PHP_METHOD(RedisArray, mget)
771
/* calls */
772
for(n = 0; n < ra->count; ++n) { /* for each node */
773
774
- redis_inst = ra->redis[n];
775
-
776
/* copy args for MGET call on node. */
777
MAKE_STD_ZVAL(z_argarray);
778
array_init(z_argarray);
0 commit comments