iliaa Sun Mar 6 12:04:23 2005 EDT Modified files: (Branch: PHP_5_0) /php-src NEWS /php-src/ext/standard image.c Log: MFH: Fixed bug #29424 (width and height inverted for JPEG2000 files). http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.273&r2=1.1760.2.274&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1760.2.273 php-src/NEWS:1.1760.2.274 --- php-src/NEWS:1.1760.2.273 Sat Mar 5 12:52:45 2005 +++ php-src/NEWS Sun Mar 6 12:04:20 2005 @@ -136,6 +136,7 @@ - Fixed bug #29767 (Weird behaviour of __set($name, $value)). (Dmitry) - Fixed bug #29733 (printf() handles repeated placeholders wrong). (bugs dot php dot net at bluetwanger dot de, Ilia) +- Fixed bug #29424 (width and height inverted for JPEG2000 files). (Ilia) - Fixed bug #29329 (configure for mysqli with shared doesn't work). (Georg) - Fixed bug #29136 (make test - libtool failure on MacOSX). (Jani) - Fixed bug #28976 (mail(): use "From:" from headers if sendmail_from is empty). http://cvs.php.net/diff.php/php-src/ext/standard/image.c?r1=1.98.2.7&r2=1.98.2.8&ty=u Index: php-src/ext/standard/image.c diff -u php-src/ext/standard/image.c:1.98.2.7 php-src/ext/standard/image.c:1.98.2.8 --- php-src/ext/standard/image.c:1.98.2.7 Tue Mar 1 08:53:19 2005 +++ php-src/ext/standard/image.c Sun Mar 6 12:04:22 2005 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: image.c,v 1.98.2.7 2005/03/01 13:53:19 sesser Exp $ */ +/* $Id: image.c,v 1.98.2.8 2005/03/06 17:04:22 iliaa Exp $ */ #include "php.h" #include <stdio.h> @@ -628,8 +628,8 @@ dummy_short = php_read2(stream TSRMLS_CC); /* Lsiz */ dummy_short = php_read2(stream TSRMLS_CC); /* Rsiz */ - result->height = php_read4(stream TSRMLS_CC); /* Xsiz */ result->width = php_read4(stream TSRMLS_CC); /* Ysiz */ + result->height = php_read4(stream TSRMLS_CC); /* Xsiz */ #if MBO_0 php_read4(stream TSRMLS_CC); /* XOsiz */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php