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>2014-02-21 10:26:00 +0400
committermichael-grunder <michael.grunder@gmail.com>2014-02-21 10:26:00 +0400
commit43b35a4737d3582481ff85b6506f711f8383c723 (patch)
tree755d04562db90954b892aa9f5e86a08a9dfdcb63
parent92782639b0329ff91658a0602a3d816446a3663d (diff)
parentd2832bfa85534affabdb9e10261ec50c4eb22957 (diff)
Merge branch 'hotfix/eval_timeout_segfault'eval_timeout_segfault
-rw-r--r--library.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/library.c b/library.c
index 7e7dc072..efd97bfe 100644
--- a/library.c
+++ b/library.c
@@ -1824,7 +1824,7 @@ redis_read_variant_reply(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zv
default:
// Protocol error
zend_throw_exception_ex(redis_exception_ce, 0 TSRMLS_CC, "protocol error, got '%c' as reply-type byte\n", reply_type);
- break;
+ return FAILURE;
}
IF_MULTI_OR_PIPELINE() {