From 7f42813ad8df8a8945a3fcc992de1b2b4545017c Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sat, 11 Sep 1999 15:36:00 +0000 Subject: [PATCH] Except for this small bug fix - it works --- ext/standard/post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/post.c b/ext/standard/post.c index 3baf66dfb8..7e81b67d75 100644 --- a/ext/standard/post.c +++ b/ext/standard/post.c @@ -149,7 +149,7 @@ void php_parse_gpc_data(char *val, char *var, pval *track_vars_array ELS_DC PLS_ gpc_element->refcount++; } if (track_vars_array) { - zend_hash_update(EG(active_symbol_table), var, var_len+1, &gpc_element, sizeof(pval *), NULL); + zend_hash_update(track_vars_array->value.ht, var, var_len+1, &gpc_element, sizeof(pval *), NULL); gpc_element->refcount++; } } -- 2.40.0