Skip to content

Commit 9c779de

Browse files
committed
Fix memory leak
1 parent 6c5a665 commit 9c779de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zephir_parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ PHP_FUNCTION(zephir_parse_file)
6363
}
6464
RETURN_ZVAL(&ret, 1, 1);
6565
#else
66-
RETVAL_ZVAL(ret, 1, 0);
66+
RETVAL_ZVAL(ret, 1, 1);
6767
#endif
6868
}
6969
/* }}} */

0 commit comments

Comments
 (0)