summaryrefslogtreecommitdiff
path: root/Lib/php/utils.i
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/php/utils.i')
-rw-r--r--Lib/php/utils.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/php/utils.i b/Lib/php/utils.i
index 4e53e25a7..408a3b366 100644
--- a/Lib/php/utils.i
+++ b/Lib/php/utils.i
@@ -92,6 +92,7 @@
%fragment("t_output_helper","header") %{
static void
t_output_helper(zval **target, zval *o TSRMLS_DC) {
+ zval *tmp;
if ( (*target)->type == IS_ARRAY ) {
/* it's already an array, just append */
add_next_index_zval( *target, o );
@@ -102,7 +103,6 @@ t_output_helper(zval **target, zval *o TSRMLS_DC) {
FREE_ZVAL(o);
return;
}
- zval *tmp;
ALLOC_INIT_ZVAL(tmp);
*tmp = **target;
zval_copy_ctor(tmp);