From 7be30b08a28c83a21fbdf8f04db38e5d7c4f8adc Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 2 Dec 2019 08:45:08 +0100 Subject: v2.0.4 --- e27ff18ac768aae1cf955111179ec68307d37475.patch | 36 -------------------------- 1 file changed, 36 deletions(-) delete mode 100644 e27ff18ac768aae1cf955111179ec68307d37475.patch (limited to 'e27ff18ac768aae1cf955111179ec68307d37475.patch') diff --git a/e27ff18ac768aae1cf955111179ec68307d37475.patch b/e27ff18ac768aae1cf955111179ec68307d37475.patch deleted file mode 100644 index d64c262..0000000 --- a/e27ff18ac768aae1cf955111179ec68307d37475.patch +++ /dev/null @@ -1,36 +0,0 @@ -From e27ff18ac768aae1cf955111179ec68307d37475 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Thu, 23 May 2019 13:19:20 +0200 -Subject: [PATCH] fix php_pcre_match_impl call for 7.4 - ---- - provider.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/provider.c b/provider.c -index 1543d25..e2cd075 100644 ---- a/provider.c -+++ b/provider.c -@@ -205,6 +205,9 @@ static int oauth_provider_parse_auth_header(php_oauth_provider *sop, char *auth_ - zval subpats, return_value, *item_param, *current_param, *current_val; - HashPosition hpos; - zend_string *regex = zend_string_init(OAUTH_REGEX, sizeof(OAUTH_REGEX) - 1, 0); -+#if PHP_VERSION_ID >= 70400 -+ zend_string *s_auth_header = zend_string_init(auth_header, strlen(auth_header), 0); -+#endif - size_t decoded_len; - - if(!auth_header || strncasecmp(auth_header, "oauth", 4) || !sop) { -@@ -224,8 +227,12 @@ static int oauth_provider_parse_auth_header(php_oauth_provider *sop, char *auth_ - - php_pcre_match_impl( - pce, -+#if PHP_VERSION_ID >= 70400 -+ s_auth_header, -+#else - auth_header, - strlen(auth_header), -+#endif - &return_value, - &subpats, - 1, /* global */ -- cgit