Subject: | Wrong regexp for GIF detection |
The regexp for matching GIF files reads in the Image::Size source code
like this:
my %type_map = ( '^GIF8[7,9]a' => \&gifsize,
This is wrong, the "," should be removed between "7" and "9". Otherwise
files starting with "GIF8,a" would also be detected as GIF files.
Regards,
Slaven