[FFmpeg-cvslog] avformat/demux: resurrect dead stores
Michael Niedermayer
git at videolan.org
Thu Jun 13 23:41:17 EEST 2024
ffmpeg | branch: release/5.1 | Michael Niedermayer <michael at niedermayer.cc> | Thu May 23 23:25:42 2024 +0200| [84953f5c232e10d14ea85ef54779f7545195b8b8] | committer: Michael Niedermayer
avformat/demux: resurrect dead stores
Fixes: CID1473512 Unused value
Fixes: CID1529228 Unused value
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 33da5f4e2717cc947cf44ad9a52668694ea4ee82)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=84953f5c232e10d14ea85ef54779f7545195b8b8
---
libavformat/demux.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/libavformat/demux.c b/libavformat/demux.c
index 1620716716..ab433f4068 100644
--- a/libavformat/demux.c
+++ b/libavformat/demux.c
@@ -2415,7 +2415,7 @@ static int add_coded_side_data(AVStream *st, AVCodecContext *avctx)
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
{
FFFormatContext *const si = ffformatcontext(ic);
- int count = 0, ret = 0;
+ int count = 0, ret = 0, err;
int64_t read_size;
AVPacket *pkt1 = si->pkt;
int64_t old_offset = avio_tell(ic->pb);
@@ -2931,9 +2931,11 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
}
}
- ret = compute_chapters_end(ic);
- if (ret < 0)
+ err = compute_chapters_end(ic);
+ if (err < 0) {
+ ret = err;
goto find_stream_info_err;
+ }
/* update the stream parameters from the internal codec contexts */
for (unsigned i = 0; i < ic->nb_streams; i++) {
More information about the ffmpeg-cvslog
mailing list