aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-06 12:53:53 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-01-06 16:10:46 +0100
commitfa0194e9ca704d1b6f8f85762f513202bde6482d (patch)
tree01db274618d2ecc9dafed50725aede600174cb59
parent83700aced1917f372f453eea1cc6543aeae2c2a1 (diff)
downloadffmpeg-fa0194e9ca704d1b6f8f85762f513202bde6482d.tar.gz
avformat/utils: Clear pointer in ff_alloc_extradata() to avoid leaving a stale pointer in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit bbfca8e84b0e69abba523d665536c0135fc1c00e) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 85a96845b7..d2efda0727 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2698,6 +2698,7 @@ int ff_alloc_extradata(AVCodecContext *avctx, int size)
int ret;
if (size < 0 || size >= INT32_MAX - FF_INPUT_BUFFER_PADDING_SIZE) {
+ avctx->extradata = NULL;
avctx->extradata_size = 0;
return AVERROR(EINVAL);
}