iliaa Tue Feb 1 18:29:02 2005 EDT Modified files: (Branch: PHP_4_3) /php-src NEWS /php-src/ext/exif exif.c Log: MFH: Fixed bug #31797 (exif_read_data() uses too low nesting limit). http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.823&r2=1.1247.2.824&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1247.2.823 php-src/NEWS:1.1247.2.824 --- php-src/NEWS:1.1247.2.823 Thu Jan 27 11:38:29 2005 +++ php-src/NEWS Tue Feb 1 18:29:01 2005 @@ -6,6 +6,7 @@ - Fixed several egregious leaks in ext/browscap and sapi/embed. (Andrei) - Fixed build system to always use bundled libtool files. (Jani) - Fixed MacOSX shared extensions crashing on Apache startup. (Rasmus) +- Fixed bug #31797 (exif_read_data() uses too low nesting limit). (Ilia) - Fixed bug #31705 (parse_url() does not recognize http://foo.com#bar). (Ilia) - Fixed bug #31684 (dio_tcsetattr(): misconfigured termios settings). (elod at itfais dot com) http://cvs.php.net/diff.php/php-src/ext/exif/exif.c?r1=1.118.2.30&r2=1.118.2.31&ty=u Index: php-src/ext/exif/exif.c diff -u php-src/ext/exif/exif.c:1.118.2.30 php-src/ext/exif/exif.c:1.118.2.31 --- php-src/ext/exif/exif.c:1.118.2.30 Fri Jan 21 18:47:06 2005 +++ php-src/ext/exif/exif.c Tue Feb 1 18:29:01 2005 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: exif.c,v 1.118.2.30 2005/01/21 23:47:06 andrei Exp $ */ +/* $Id: exif.c,v 1.118.2.31 2005/02/01 23:29:01 iliaa Exp $ */ /* ToDos * @@ -85,7 +85,7 @@ #define EFREE_IF(ptr) if (ptr) efree(ptr) -#define MAX_IFD_NESTING_LEVEL 5 +#define MAX_IFD_NESTING_LEVEL 25 static unsigned char exif_thumbnail_force_ref[] = {2, BYREF_NONE, BYREF_FORCE_REST}; @@ -101,7 +101,7 @@ }; /* }}} */ -#define EXIF_VERSION "1.4 $Id: exif.c,v 1.118.2.30 2005/01/21 23:47:06 andrei Exp $" +#define EXIF_VERSION "1.4 $Id: exif.c,v 1.118.2.31 2005/02/01 23:29:01 iliaa Exp $" /* {{{ PHP_MINFO_FUNCTION */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php