Fixed bug #33210 (getimagesize() fails to detect width/height on certain JPEGs).

This commit is contained in:
Ilia Alshanetsky 2010-06-30 12:21:35 +00:00
parent f1bb484bc2
commit 0625a0b23b

View File

@ -402,12 +402,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 > 25)
{
/* who knows the maxim amount of 0xff? though 7 */
/* but found other implementations */
return M_EOI;
}
a++;
} while (marker == 0xff);
if (a < 2)
{