1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +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
No known key found for this signature in database
GPG Key ID: 764E48EA48221833

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;
} }