Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2013-08-01 08:50:00 +0400
committermichael-grunder <michael.grunder@gmail.com>2013-08-01 08:50:00 +0400
commit98bc9ecbeb2ca4bfb5a9e416ff08c8b371aff77c (patch)
treea5c3c18aaf44263b0b7fb43a80351a5411489613 /redis_array.c
parent0ce690c8fe7c9ac6b64d1ed0b5ddf7072ce8c01c (diff)
Formatting
Diffstat (limited to 'redis_array.c')
-rw-r--r--redis_array.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/redis_array.c b/redis_array.c
index bbc4927a..b201894b 100644
--- a/redis_array.c
+++ b/redis_array.c
@@ -834,12 +834,12 @@ PHP_METHOD(RedisArray, mget)
/* phpredis proper can only use string or long keys, so restrict to that here */
if(Z_TYPE_PP(data) != IS_STRING && Z_TYPE_PP(data) != IS_LONG) {
- php_error_docref(NULL TSRMLS_CC, E_ERROR, "MGET: all keys must be strings or longs");
- efree(argv);
- efree(pos);
- efree(redis_instances);
- efree(argc_each);
- RETURN_FALSE;
+ php_error_docref(NULL TSRMLS_CC, E_ERROR, "MGET: all keys must be strings or longs");
+ efree(argv);
+ efree(pos);
+ efree(redis_instances);
+ efree(argc_each);
+ RETURN_FALSE;
}
/* Convert to a string for hash lookup if it isn't one */