aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-13 18:51:33 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-13 20:48:09 +0100
commit43924a8e992fdc6cf882b711f758a442c2eec6a9 (patch)
tree6412ea63ad9c25e080dada49a37c474dfd763f75
parentd705125b949bc49889f52ea8ea4a036a7d8d2e2b (diff)
downloadffmpeg-43924a8e992fdc6cf882b711f758a442c2eec6a9.tar.gz
avcodec/hevc: Fix handling of skipped_bytes() reallocation failures
Fixes CID1260704 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit e172f5e53ae4dbbcdcf81c9a3b962dc9f5a8a98d) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/hevc.c25
1 files changed, 19 insertions, 6 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index fa9854d737..4551bd445c 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -2888,17 +2888,30 @@ static int decode_nal_units(HEVCContext *s, const uint8_t *buf, int length)
if (s->nals_allocated < s->nb_nals + 1) {
int new_size = s->nals_allocated + 1;
- HEVCNAL *tmp = av_realloc_array(s->nals, new_size, sizeof(*tmp));
+ void *tmp = av_realloc_array(s->nals, new_size, sizeof(*s->nals));
+ ret = AVERROR(ENOMEM);
if (!tmp) {
- ret = AVERROR(ENOMEM);
goto fail;
}
s->nals = tmp;
memset(s->nals + s->nals_allocated, 0,
- (new_size - s->nals_allocated) * sizeof(*tmp));
- av_reallocp_array(&s->skipped_bytes_nal, new_size, sizeof(*s->skipped_bytes_nal));
- av_reallocp_array(&s->skipped_bytes_pos_size_nal, new_size, sizeof(*s->skipped_bytes_pos_size_nal));
- av_reallocp_array(&s->skipped_bytes_pos_nal, new_size, sizeof(*s->skipped_bytes_pos_nal));
+ (new_size - s->nals_allocated) * sizeof(*s->nals));
+
+ tmp = av_realloc_array(s->skipped_bytes_nal, new_size, sizeof(*s->skipped_bytes_nal));
+ if (!tmp)
+ goto fail;
+ s->skipped_bytes_nal = tmp;
+
+ tmp = av_realloc_array(s->skipped_bytes_pos_size_nal, new_size, sizeof(*s->skipped_bytes_pos_size_nal));
+ if (!tmp)
+ goto fail;
+ s->skipped_bytes_pos_size_nal = tmp;
+
+ tmp = av_realloc_array(s->skipped_bytes_pos_nal, new_size, sizeof(*s->skipped_bytes_pos_nal));
+ if (!tmp)
+ goto fail;
+ s->skipped_bytes_pos_nal = tmp;
+
s->skipped_bytes_pos_size_nal[s->nals_allocated] = 1024; // initial buffer size
s->skipped_bytes_pos_nal[s->nals_allocated] = av_malloc_array(s->skipped_bytes_pos_size_nal[s->nals_allocated], sizeof(*s->skipped_bytes_pos));
s->nals_allocated = new_size;