From 585cef6a6b5a5303fc43358b1dde7cf0aacb2c37 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Mon, 23 Sep 2024 15:23:27 +0200 Subject: [PATCH 1/2] This commit is not supposed to trigger "ABI break" labeling --- ext/phar/phar.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/phar/phar.c b/ext/phar/phar.c index b774f22e2d565..ec86120d89e77 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -23,6 +23,8 @@ #include "func_interceptors.h" #include "ext/standard/php_var.h" +int nonsense; + static void destroy_phar_data(zval *zv); ZEND_DECLARE_MODULE_GLOBALS(phar) From 229d557b1d36fa3098c39d3cfa7fa01fe57a01ce Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Mon, 23 Sep 2024 15:25:23 +0200 Subject: [PATCH 2/2] This comment is supposed to trigger the "ABI break" labeling --- Zend/zend.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Zend/zend.h b/Zend/zend.h index 8210737da9218..6ca918db58d31 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -41,6 +41,8 @@ #include "zend_signal.h" #include "zend_max_execution_timer.h" +int nonsense; + #define zend_sprintf sprintf #define HANDLE_BLOCK_INTERRUPTIONS() ZEND_SIGNAL_BLOCK_INTERRUPTIONS()