summaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorDale Curtis <[email protected]>2017-11-21 15:10:08 -0800
committerMichael Niedermayer <[email protected]>2017-11-28 21:42:48 +0100
commit96e340760824e537e2d034abf9a3b8be3e2b312c (patch)
tree22ebd81055402857eeb08558513e22508f001ce6 /libavformat
parentb3cb9bd43fa33a8aaf7a63e43f8418975b3bf0de (diff)
Free extradata before reallocating.
Otherwise ff_alloc_extradata() just leaks any existing allocated memory. Signed-off-by: Dale Curtis <[email protected]> Reviewed-by: Derek Buitenhuis <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/oggparseogm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/oggparseogm.c b/libavformat/oggparseogm.c
index e7a501b5a7..fad093b629 100644
--- a/libavformat/oggparseogm.c
+++ b/libavformat/oggparseogm.c
@@ -110,6 +110,7 @@ ogm_header(AVFormatContext *s, int idx)
size -= 52;
if (bytestream2_get_bytes_left(&p) < size)
return AVERROR_INVALIDDATA;
+ av_freep(&st->codecpar->extradata);
if (ff_alloc_extradata(st->codecpar, size) < 0)
return AVERROR(ENOMEM);
bytestream2_get_buffer(&p, st->codecpar->extradata, st->codecpar->extradata_size);