From 773c8b0c092a0e9ad5c5548815bcb9991d54d5c1 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Sat, 10 Jan 2015 22:29:00 +0100 Subject: [PATCH] Fix missing ZVAL_DEREF() --- ext/standard/http.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/standard/http.c b/ext/standard/http.c index 9c9d1dc530..4b454476f2 100644 --- a/ext/standard/http.c +++ b/ext/standard/http.c @@ -76,6 +76,7 @@ PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, prop_len = 0; } + ZVAL_DEREF(zdata); if (Z_TYPE_P(zdata) == IS_ARRAY || Z_TYPE_P(zdata) == IS_OBJECT) { if (key) { zend_string *ekey; -- 2.40.0