iliaa           Tue Feb 15 16:56:28 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src/ext/exif   exif.c 
  Log:
  MFH: Fixed bug #31986 (Max nesting limit set too low).
  
  
http://cvs.php.net/diff.php/php-src/ext/exif/exif.c?r1=1.162.2.4&r2=1.162.2.5&ty=u
Index: php-src/ext/exif/exif.c
diff -u php-src/ext/exif/exif.c:1.162.2.4 php-src/ext/exif/exif.c:1.162.2.5
--- php-src/ext/exif/exif.c:1.162.2.4   Tue Feb  1 18:28:31 2005
+++ php-src/ext/exif/exif.c     Tue Feb 15 16:56:27 2005
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: exif.c,v 1.162.2.4 2005/02/01 23:28:31 iliaa Exp $ */
+/* $Id: exif.c,v 1.162.2.5 2005/02/15 21:56:27 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.162.2.4 2005/02/01 23:28:31 iliaa 
Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.162.2.5 2005/02/15 21:56:27 iliaa 
Exp $"
 
 /* {{{ PHP_MINFO_FUNCTION
  */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to