Browse Source

- Fix all incarnations of bug #30266

# most probably we should emit a fatal error here but that has to be
# discussed first
PHP-5.1
Marcus Boerger 22 years ago
parent
commit
32c2e664a6
  1. 4
      Zend/zend_execute_API.c

4
Zend/zend_execute_API.c

@ -575,6 +575,10 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
zval *params_array;
int call_via_handler = 0;
if (EG(exception)) {
return FAILURE; /* we would result in an instable executor otherwise */
}
switch (fci->size) {
case sizeof(zend_fcall_info):
break; /* nothing to do currently */

Loading…
Cancel
Save