summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-07-28 11:41:56 +0200
committerRemi Collet <fedora@famillecollet.com>2015-07-28 11:41:56 +0200
commit80eace3be89b715b3bc41b8fdfe11c5a51e7d864 (patch)
tree590c1735da461b34c3fc77c4d559c86081084dfd
parent6d0e15b33a371380aee72dd7429c4d058b497654 (diff)
php-pecl-json-post: drop patch
-rw-r--r--json_post-php7.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/json_post-php7.patch b/json_post-php7.patch
deleted file mode 100644
index 3c85f80..0000000
--- a/json_post-php7.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From e54f65df2bcb68b4493832c83c141da9f579964e Mon Sep 17 00:00:00 2001
-From: Remi Collet <fedora@famillecollet.com>
-Date: Fri, 24 Jul 2015 09:57:36 +0200
-Subject: [PATCH] Fix: json_post.flags=2 ignored with php7
-
-Detected on 32bits build, where 003.phpt is failing
-(not detected on 64bits, because not covered)
----
- package.xml | 1 +
- php_json_post.c | 2 +-
- 2 files changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/php_json_post.c b/php_json_post.c
-index fd3165c..4a0fcd3 100644
---- a/php_json_post.c
-+++ b/php_json_post.c
-@@ -63,7 +63,7 @@ static SAPI_POST_HANDLER_FUNC(php_json_post_handler)
-
- ZVAL_NULL(&tmp);
-
-- php_json_decode(&tmp, json->val, json->len, JSON_POST_G(flags), PG(max_input_nesting_level));
-+ php_json_decode_ex(&tmp, json->val, json->len, JSON_POST_G(flags), PG(max_input_nesting_level));
-
- switch (Z_TYPE(tmp)) {
- case IS_OBJECT: