From: Christoph M. Becker Date: Fri, 23 Sep 2016 22:35:24 +0000 (+0200) Subject: Fix #73157 (again): imagegd2() ignores 3rd param if 4 are given X-Git-Tag: php-7.0.12RC1~16^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1da79a6c6e39f08a91c2e3ae9281c1b0e5261510;p=php Fix #73157 (again): imagegd2() ignores 3rd param if 4 are given Obviously, there was a bad merge. --- diff --git a/NEWS b/NEWS index 1bbb1f4b2b..b9ef512bd2 100644 --- a/NEWS +++ b/NEWS @@ -26,6 +26,7 @@ PHP NEWS cmb) . Fixed bug #53504 (imagettfbbox gives incorrect values for bounding box). (Mark Plomer, cmb) + . Fixed bug #73157 (imagegd2() ignores 3rd param if 4 are given). (cmb) - Mbstring: . Fixed bug #72994 (mbc_to_code() out of bounds read). (Laruence, cmb) diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 192aed0af4..5f086864ca 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -2614,11 +2614,11 @@ static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char if (argc > 1) { fn = file; - if (argc == 3) { + if (argc >= 3) { q = quality; - } - if (argc == 4) { - t = type; + if (argc == 4) { + t = type; + } } } diff --git a/ext/gd/tests/bug73157.phpt b/ext/gd/tests/bug73157.phpt new file mode 100644 index 0000000000..b03e91ec9d --- /dev/null +++ b/ext/gd/tests/bug73157.phpt @@ -0,0 +1,22 @@ +--TEST-- +Bug #73157 (imagegd2() ignores 3rd param if 4 are given) +--SKIPIF-- + +--FILE-- + +===DONE=== +--EXPECT-- +chunk size: 256 +===DONE===