diff options
author | Remi Collet <remi@remirepo.net> | 2024-12-04 10:00:01 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-12-04 10:00:01 +0100 |
commit | 3ec48d1505bb37e88a87eeb24eb0f40231a31c60 (patch) | |
tree | cc1a738ef62522b58efdc01c6affadef58267ab9 /pcov-php84.patch | |
parent | f552d8c8db97b1a61bc327177f26b492ee9dcb55 (diff) |
drop patch merged upstream
Diffstat (limited to 'pcov-php84.patch')
-rw-r--r-- | pcov-php84.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/pcov-php84.patch b/pcov-php84.patch deleted file mode 100644 index 238c7bf..0000000 --- a/pcov-php84.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 7d764c7c2555e8287351961d72be3ebec4d8743f Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Fri, 12 Jul 2024 10:18:53 +0200 -Subject: [PATCH] Fix php_pcre_match_impl with 8.4 - ---- - pcov.c | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/pcov.c b/pcov.c -index f04ba9c..4f7d158 100644 ---- a/pcov.c -+++ b/pcov.c -@@ -137,7 +137,11 @@ static zend_always_inline zend_bool php_pcov_wants(zend_string *filename) { /* { - ZSTR_VAL(filename), ZSTR_LEN(filename), - #endif - &match, NULL, -+#if PHP_VERSION_ID >= 80400 -+ false, 0, 0); -+#else - 0, 0, 0, 0); -+#endif - - if (zend_is_true(&match)) { - zend_hash_add_empty_element( |