Fix a crash when probing img2 format with a NULL filename.

patch by elupus _at_ ecce.se

Originally committed as revision 7335 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Joakim Plate 2006-12-20 23:33:50 +00:00 committed by Aurelien Jacobs
parent e4d0e2edb9
commit e825b5009f
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ static int find_image_range(int *pfirst_index, int *plast_index,
static int image_probe(AVProbeData *p)
{
if (av_str2id(img_tags, p->filename)) {
if (p->filename && av_str2id(img_tags, p->filename)) {
if (av_filename_number_test(p->filename))
return AVPROBE_SCORE_MAX;
else