Skip to content

Commit 24b768e

Browse files
committed
fixup! Fix ZPP order in ext/phar
1 parent 3d2f743 commit 24b768e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/phar/phar_object.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -675,9 +675,9 @@ PHP_METHOD(Phar, webPhar)
675675

676676
ZVAL_STRINGL(&params, entry, entry_len);
677677

678-
fci.param_count = 1;
679-
fci.params = &params;
680-
fci.retval = &retval;
678+
rewrite_fci.param_count = 1;
679+
rewrite_fci.params = &params;
680+
rewrite_fci.retval = &retval;
681681

682682
if (FAILURE == zend_call_function(&rewrite_fci, &rewrite_fcc)) {
683683
if (!EG(exception)) {

0 commit comments

Comments
 (0)