Browse Source

avutil/video_enc_params: Check for truncation before creating buffer

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 4 years ago
parent
commit
c9d9c60746
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavutil/video_enc_params.c

+ 4
- 0
libavutil/video_enc_params.c View File

@@ -63,6 +63,10 @@ av_video_enc_params_create_side_data(AVFrame *frame, enum AVVideoEncParamsType t
par = av_video_enc_params_alloc(type, nb_blocks, &size);
if (!par)
return NULL;
if (size > INT_MAX) {
av_free(par);
return NULL;
}
buf = av_buffer_create((uint8_t *)par, size, NULL, NULL, 0);
if (!buf) {
av_freep(&par);


Loading…
Cancel
Save