pajoye Mon Aug 27 08:27:45 2007 UTC Modified files: (Branch: PHP_5_2) /php-src NEWS /php-src/ext/gd/libgd gd.c Log: - revert fix for #106 - add news entry for pslib fix NB: Please next time, inform us before a complete freeze is done for a given branch. And a week for a RC is defitively too short. http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.911&r2=1.2027.2.547.2.912&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.911 php-src/NEWS:1.2027.2.547.2.912 --- php-src/NEWS:1.2027.2.547.2.911 Sun Aug 26 20:35:11 2007 +++ php-src/NEWS Mon Aug 27 08:27:44 2007 @@ -1,9 +1,10 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -- Fixed regression in imagerectangle for 1x1 rectangle (gd bug #106) (Pierre) 23 Aug 2007, PHP 5.2.4RC3 - Fixed version_compare() to support "rc" as well as "RC" for release candidate version numbers. +- Fixed possible crash in imagepsloadfont, work around a bug in the pslib on + windows (Pierre) - Fixed bug #42368 (Incorrect error message displayed by pg_escape_string). (Ilia) - Fixed bug #42365 (glob() crashes and/or accepts way too many flags). (Jani) http://cvs.php.net/viewvc.cgi/php-src/ext/gd/libgd/gd.c?r1=1.90.2.1.2.18&r2=1.90.2.1.2.19&diff_format=u Index: php-src/ext/gd/libgd/gd.c diff -u php-src/ext/gd/libgd/gd.c:1.90.2.1.2.18 php-src/ext/gd/libgd/gd.c:1.90.2.1.2.19 --- php-src/ext/gd/libgd/gd.c:1.90.2.1.2.18 Sun Aug 26 20:35:10 2007 +++ php-src/ext/gd/libgd/gd.c Mon Aug 27 08:27:45 2007 @@ -2124,12 +2124,6 @@ int half1 = 1; int t; - - if (x1 == x2 && y1 == y2 && thick == 1) { - gdImageSetPixel(im, x1, y1, color); - return; - } - if (y2 < y1) { t=y1; y1 = y2;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php