]> granicus.if.org Git - php/commitdiff
- added missing return...
authorJohannes Schlüter <johannes@php.net>
Wed, 18 Oct 2006 17:03:26 +0000 (17:03 +0000)
committerJohannes Schlüter <johannes@php.net>
Wed, 18 Oct 2006 17:03:26 +0000 (17:03 +0000)
Zend/zend_execute_API.c

index 7f8eb7b326f2575bbfd8d66111d2162082d7c6b9..4f26c5ca603412a3e85c046f56ba5ca978ce18f9 100644 (file)
@@ -588,7 +588,7 @@ ZEND_API int zval_update_constant_ex(zval **pp, void *arg, zend_class_entry *sco
 
 ZEND_API int zval_update_constant(zval **pp, void *arg TSRMLS_DC)
 {
-       zval_update_constant_ex(pp, arg, NULL TSRMLS_CC);
+       return zval_update_constant_ex(pp, arg, NULL TSRMLS_CC);
 }
 
 int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC)