Fixed bug #33210 (relax jpeg recursive loop protection).

This commit is contained in:
Ilia Alshanetsky 2005-06-01 22:28:03 +00:00
parent 29319a81b8
commit fd396287d0

View File

@ -398,7 +398,7 @@ static unsigned int php_next_marker(php_stream * stream, int last_marker, int co
last_marker = M_PSEUDO; /* stop skipping non 0xff for M_COM */
}
}
if (++a > 10)
if (++a > 25)
{
/* who knows the maxim amount of 0xff? though 7 */
/* but found other implementations */