diff options
author | Remi Collet <remi@remirepo.net> | 2021-06-15 09:20:41 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-06-15 09:20:41 +0200 |
commit | 562f84b239bcc69367b43c9ac9c1d7767bc92fa3 (patch) | |
tree | 8aaff96f28b9a6b97f3764cdb7585de9a0b07bb3 /350.patch | |
parent | 584b39db5c3d09d2dbb0b12b77a9314b4314f02b (diff) |
update to 3.5.0RC1
drop all patches, all merged upstream
add patch to fix some methods reflection from
https://github.com/Imagick/imagick/pull/421
Diffstat (limited to '350.patch')
-rw-r--r-- | 350.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/350.patch b/350.patch deleted file mode 100644 index 964cc72..0000000 --- a/350.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 4ace7cf1db75577e9c8eeb4826c9a04ac9bef4a9 Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Mon, 28 Sep 2020 15:06:14 +0200 -Subject: [PATCH] simpler warning to avoid DivisionByZeroError exception in 8 - ---- - tests/270_imagick_restoreErrorHandler.phpt | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/tests/270_imagick_restoreErrorHandler.phpt b/tests/270_imagick_restoreErrorHandler.phpt -index 77eeb17..ba2f5d1 100644 ---- a/tests/270_imagick_restoreErrorHandler.phpt -+++ b/tests/270_imagick_restoreErrorHandler.phpt -@@ -16,7 +16,7 @@ catch(ImagickException $ie) { - } - - try { -- $x = @(5 / 0); -+ $x = @$x; - echo "Normal warning is suppressed".PHP_EOL; - } - catch(\Exception $e) { -@@ -27,4 +27,4 @@ catch(\Exception $e) { - ?> - --EXPECTF-- - Normal exception --Normal warning is suppressed -\ No newline at end of file -+Normal warning is suppressed |