1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avformat/iff: remove surplus if statement

Fixes CID 1636854
This commit is contained in:
Peter Ross
2024-12-22 19:08:20 +11:00
committed by Leo Izen
parent b2cba76d4f
commit 350ebef112

View File

@ -1007,8 +1007,6 @@ static int iff_read_packet(AVFormatContext *s,
av_assert0(0); av_assert0(0);
} }
if (ret < 0)
return ret;
return ret; return ret;
} }