mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
av_find_stream_info: initialize ret
This should fix hypothetical corner cases where it might have never been initialized before use Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2492f7774f
commit
ccba9535dc
@ -2621,7 +2621,7 @@ int av_find_stream_info(AVFormatContext *ic)
|
||||
|
||||
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
|
||||
{
|
||||
int i, count, ret, j;
|
||||
int i, count, ret = 0, j;
|
||||
int64_t read_size;
|
||||
AVStream *st;
|
||||
AVPacket pkt1, *pkt;
|
||||
|
Loading…
Reference in New Issue
Block a user