1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00

Merge branch 'PHP-7.0'

* PHP-7.0:
  Superfluous semicolon
This commit is contained in:
Xinchen Hui
2015-12-24 10:42:49 +08:00
2 changed files with 2 additions and 1 deletions

View File

@@ -112,5 +112,6 @@ ZEND_API void dtrace_execute_internal(zend_execute_data *execute_data, zval *ret
}
/* }}} */
#endif /* HAVE_DTRACE */

View File

@@ -277,7 +277,7 @@ static zval *spl_array_get_dimension_ptr(int check_inherited, zval *object, zval
if ((type == BP_VAR_W || type == BP_VAR_RW) && (ht->u.v.nApplyCount > 0)) {
zend_error(E_WARNING, "Modification of ArrayObject during sorting is prohibited");
return &EG(error_zval);;
return &EG(error_zval);
}
try_again: