iliaa           Tue Feb  1 18:27:34 2005 EDT

  Modified files:              
    /php-src/ext/exif   exif.c 
  Log:
  Fixed bug #31797 (exif_read_data() uses too low nesting limit).
  
  
http://cvs.php.net/diff.php/php-src/ext/exif/exif.c?r1=1.165&r2=1.166&ty=u
Index: php-src/ext/exif/exif.c
diff -u php-src/ext/exif/exif.c:1.165 php-src/ext/exif/exif.c:1.166
--- php-src/ext/exif/exif.c:1.165       Fri Jan 21 19:01:33 2005
+++ php-src/ext/exif/exif.c     Tue Feb  1 18:27:33 2005
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: exif.c,v 1.165 2005/01/22 00:01:33 andrei Exp $ */
+/* $Id: exif.c,v 1.166 2005/02/01 23:27:33 iliaa Exp $ */
 
 /*  ToDos
  *
@@ -93,7 +93,7 @@
 
 #define EFREE_IF(ptr)  if (ptr) efree(ptr)
 
-#define MAX_IFD_NESTING_LEVEL 5
+#define MAX_IFD_NESTING_LEVEL 25
 
 static
 ZEND_BEGIN_ARG_INFO(exif_thumbnail_force_ref, 1)
@@ -112,7 +112,7 @@
 };
 /* }}} */
 
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.165 2005/01/22 00:01:33 andrei Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.166 2005/02/01 23:27:33 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