From e917402f053382e054baf16beabe264d83e417a4 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Mon, 15 Feb 2016 15:26:44 +0800 Subject: [PATCH] Fixed typo (I think it should be a typo) --- ext/standard/array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/array.c b/ext/standard/array.c index 336af6ddc0..cd058ae68a 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -1782,7 +1782,7 @@ PHP_FUNCTION(extract) zval var_array; #ifndef FAST_ZPP - if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|lz/", &var_array, &extract_type, &prefix) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|lz/", &var_array_param, &extract_type, &prefix) == FAILURE) { return; } #else -- 2.50.1