- Fix all incarnations of bug #30266

# most probably we should emit a fatal error here but that has to be
# discussed first
This commit is contained in:
Marcus Boerger 2005-03-19 14:25:42 +00:00
parent e38141478a
commit 32c2e664a6

View File

@ -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 */