mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01:00
style fix
This commit is contained in:
@@ -889,9 +889,16 @@ PHP_FUNCTION(implode)
|
||||
}
|
||||
|
||||
php_implode(delim, arr, return_value);
|
||||
if (arg1 != NULL && arg1_separated) zval_ptr_dtor(arg1);
|
||||
if (arg2 != NULL && arg2_separated) zval_ptr_dtor(arg2);
|
||||
if (delim_needs_dtor) FREE_ZVAL(delim);
|
||||
|
||||
if (arg1 != NULL && arg1_separated) {
|
||||
zval_ptr_dtor(arg1);
|
||||
}
|
||||
if (arg2 != NULL && arg2_separated) {
|
||||
zval_ptr_dtor(arg2);
|
||||
}
|
||||
if (delim_needs_dtor) {
|
||||
FREE_ZVAL(delim);
|
||||
}
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user