iliaa Tue Feb 1 18:28:31 2005 EDT
Modified files: (Branch: PHP_5_0)
/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.1760.2.224&r2=1.1760.2.225&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.224 php-src/NEWS:1.1760.2.225
--- php-src/NEWS:1.1760.2.224 Fri Jan 28 12:37:41 2005
+++ php-src/NEWS Tue Feb 1 18:28:30 2005
@@ -15,6 +15,7 @@
is passed. (Tony)
- Fixed posix_getsid() & posix_getpgid() to return sid & pgid instead
of true. (Tony)
+- Fixed bug #31797 (exif_read_data() uses too low nesting limit). (Ilia)
- Fixed bug #31732 (mb_get_info() causes segfault when no parameters
specified). (Tony)
- Fixed bug #31710 (Wrong return values for mysqli_autocommit/commit/rollback).
http://cvs.php.net/diff.php/php-src/ext/exif/exif.c?r1=1.162.2.3&r2=1.162.2.4&ty=u
Index: php-src/ext/exif/exif.c
diff -u php-src/ext/exif/exif.c:1.162.2.3 php-src/ext/exif/exif.c:1.162.2.4
--- php-src/ext/exif/exif.c:1.162.2.3 Fri Jan 21 18:59:55 2005
+++ php-src/ext/exif/exif.c Tue Feb 1 18:28:31 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: exif.c,v 1.162.2.3 2005/01/21 23:59:55 andrei Exp $ */
+/* $Id: exif.c,v 1.162.2.4 2005/02/01 23:28:31 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.162.2.3 2005/01/21 23:59:55 andrei
Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.162.2.4 2005/02/01 23:28:31 iliaa
Exp $"
/* {{{ PHP_MINFO_FUNCTION
*/
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php