diff options
author | Martin Storsjö <martin@martin.st> | 2013-09-26 16:37:02 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-09-26 23:14:03 +0300 |
commit | d872fb0f7ff2ff0ba87f5ccf6a1a55ca2be472c9 (patch) | |
tree | 92ef865da60624c41be1e58c505c95508662ad7d /libavformat/smacker.c | |
parent | 06ebc0bf9a6401733a4ce1310325de19f631819a (diff) | |
download | ffmpeg-d872fb0f7ff2ff0ba87f5ccf6a1a55ca2be472c9.tar.gz |
lavf: Reset the entry count and allocation size variables on av_reallocp failures
When av_reallocp fails, the associated variables that keep track of
the number of elements in the array (and in some cases, the
separate number of allocated elements) need to be reset.
Not all of these might technically be needed, but it's better to
reset them if in doubt, to make sure variables don't end up
conflicting.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/smacker.c')
-rw-r--r-- | libavformat/smacker.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/smacker.c b/libavformat/smacker.c index e68c3fd467..5af5e50784 100644 --- a/libavformat/smacker.c +++ b/libavformat/smacker.c @@ -315,8 +315,10 @@ static int smacker_read_packet(AVFormatContext *s, AVPacket *pkt) frame_size -= size; frame_size -= 4; smk->curstream++; - if ((err = av_reallocp(&smk->bufs[smk->curstream], size)) < 0) + if ((err = av_reallocp(&smk->bufs[smk->curstream], size)) < 0) { + smk->buf_sizes[smk->curstream] = 0; return err; + } smk->buf_sizes[smk->curstream] = size; ret = avio_read(s->pb, smk->bufs[smk->curstream], size); if(ret != size) |