]> granicus.if.org Git - php/commitdiff
Fixed wrong return value
authorDmitry Stogov <dmitry@php.net>
Thu, 28 Sep 2006 07:16:31 +0000 (07:16 +0000)
committerDmitry Stogov <dmitry@php.net>
Thu, 28 Sep 2006 07:16:31 +0000 (07:16 +0000)
Zend/zend_execute_API.c

index ab535ea74d0d328bf373d3d5516b98bfd1d522c3..64814396ca8650f69c78995ea04696720dee1e59 100644 (file)
@@ -797,7 +797,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
                        && !(EX(function_state).function->common.fn_flags & ZEND_ACC_STATIC)
                        && !instanceof_function(check_scope_or_static, calling_scope TSRMLS_CC)) {
                                zend_error(E_ERROR, "Cannot call method %s() of class %s which is not a derived from %s", fname, calling_scope->name, check_scope_or_static->name);
-                               return 0;
+                               return FAILURE;
                        }
                } else {
                        char *function_name_lc = zend_str_tolower_dup(fname, fname_len);