You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (zend_hash_next_index_insert(symtable1, &gpc_element, sizeof(zval*), (void**) &gpc_element_p) ==FAILURE) {
178
+
zval_ptr_dtor(&gpc_element);
179
+
zval_dtor(val);
180
+
free_alloca(var_orig, use_heap);
181
+
return;
182
+
}
178
183
} else {
179
-
escaped_index=index;
180
-
if (zend_symtable_find(symtable1, escaped_index, index_len+1, (void**) &gpc_element_p) ==FAILURE
184
+
if (zend_symtable_find(symtable1, index, index_len+1, (void**) &gpc_element_p) ==FAILURE
181
185
||Z_TYPE_PP(gpc_element_p) !=IS_ARRAY) {
182
186
if (zend_hash_num_elements(symtable1) <= PG(max_input_vars)) {
183
187
if (zend_hash_num_elements(symtable1) ==PG(max_input_vars)) {
184
188
php_error_docref(NULLTSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
if (zend_hash_num_elements(symtable1) <= PG(max_input_vars)) {
232
235
if (zend_hash_num_elements(symtable1) ==PG(max_input_vars)) {
233
236
php_error_docref(NULLTSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
0 commit comments