diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c index 139d2a4f41..e423370a9b 100644 --- a/libavformat/wtvdec.c +++ b/libavformat/wtvdec.c @@ -200,7 +200,7 @@ static AVIOContext * wtvfile_open_sector(int first_sector, uint64_t length, int return NULL; } - if (wf->sectors[wf->nb_sectors - 1] << WTV_SECTOR_BITS > avio_tell(s->pb)) + if ((int64_t)wf->sectors[wf->nb_sectors - 1] << WTV_SECTOR_BITS > avio_tell(s->pb)) av_log(s, AV_LOG_WARNING, "truncated file\n"); /* check length */