Browse Source

opt: check memory allocation

CC: libav-stable@libav.org
Bug-Id: CID 1257771
(cherry picked from commit 07a0c0f0005072d115ace61e60f46be68582cc3a)
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
tags/n2.4.7
Vittorio Giovara Luca Barbato 11 years ago
parent
commit
61335ab33e
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavutil/opt.c

+ 2
- 0
libavutil/opt.c View File

@@ -119,6 +119,8 @@ static int set_string_binary(void *obj, const AVOption *o, const char *val, uint
len /= 2;

ptr = bin = av_malloc(len);
if (!ptr)
return AVERROR(ENOMEM);
while (*val) {
int a = hexchar2int(*val++);
int b = hexchar2int(*val++);


Loading…
Cancel
Save