iliaa Tue Feb 15 16:56:19 2005 EDT
Modified files:
/php-src/ext/exif exif.c
Log:
Fixed bug #31986 (Max nesting limit set too low).
http://cvs.php.net/diff.php/php-src/ext/exif/exif.c?r1=1.166&r2=1.167&ty=u
Index: php-src/ext/exif/exif.c
diff -u php-src/ext/exif/exif.c:1.166 php-src/ext/exif/exif.c:1.167
--- php-src/ext/exif/exif.c:1.166 Tue Feb 1 18:27:33 2005
+++ php-src/ext/exif/exif.c Tue Feb 15 16:56:17 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: exif.c,v 1.166 2005/02/01 23:27:33 iliaa Exp $ */
+/* $Id: exif.c,v 1.167 2005/02/15 21:56:17 iliaa Exp $ */
/* ToDos
*
@@ -93,7 +93,7 @@
#define EFREE_IF(ptr) if (ptr) efree(ptr)
-#define MAX_IFD_NESTING_LEVEL 25
+#define MAX_IFD_NESTING_LEVEL 100
static
ZEND_BEGIN_ARG_INFO(exif_thumbnail_force_ref, 1)
@@ -112,7 +112,7 @@
};
/* }}} */
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.166 2005/02/01 23:27:33 iliaa Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.167 2005/02/15 21:56:17 iliaa Exp $"
/* {{{ PHP_MINFO_FUNCTION
*/
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php