From: Ilia Alshanetsky Date: Tue, 1 Feb 2005 23:27:33 +0000 (+0000) Subject: Fixed bug #31797 (exif_read_data() uses too low nesting limit). X-Git-Tag: RELEASE_0_2~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c97b9dc73d0594b454b57e38c2c6a8a104bf8b4;p=php Fixed bug #31797 (exif_read_data() uses too low nesting limit). --- diff --git a/ext/exif/exif.c b/ext/exif/exif.c index ed47a9601a..280582db90 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -93,7 +93,7 @@ typedef unsigned char uchar; #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)