Commit d92c822fc47 for php.net

commit d92c822fc47fb0e85ce976960c9be1245cdafad6
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date:   Wed Mar 25 20:04:27 2026 +0100

    Revert "Avoid goto into zend_try block in do_cli()"

    This reverts commit e5a723e83873d1cc6b72a19d163c55fbefc37a80.

    This fix was wrong, because we don't want to run the second try block when the
    first block bails. Given this can't happen in practice, let's just keep it the
    way it is.

diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c
index ca5cc91219b..d1781eab671 100644
--- a/sapi/cli/php_cli.c
+++ b/sapi/cli/php_cli.c
@@ -867,10 +867,8 @@ static int do_cli(int argc, char **argv) /* {{{ */
 			fprintf(stdout, "Executing for the first time...\n");
 			fflush(stdout);
 		}
-	} zend_end_try();

 do_repeat:
-	zend_try {
 		/* only set script_file if not set already and not in direct mode and not at end of parameter list */
 		if (argc > php_optind
 		  && !script_file