Browse Source

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

experimental/lemon
Ilia Alshanetsky 16 years ago
parent
commit
0625a0b23b
  1. 7
      ext/standard/image.c

7
ext/standard/image.c

@ -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)
{

Loading…
Cancel
Save