Browse Source

avutil/opt: try to fix the case where src==dst in av_opt_copy()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Michael Niedermayer 11 years ago
parent
commit
7cd6d61da5
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavutil/opt.c

+ 3
- 1
libavutil/opt.c View File

@@ -1559,7 +1559,9 @@ int av_opt_copy(void *dst, void *src)
uint8_t **field_src8 = (uint8_t**)field_src;

if (o->type == AV_OPT_TYPE_STRING) {
set_string(dst, o, *field_src8, field_dst8);
if (*field_dst8 != *field_src8)
av_freep(field_dst8);
*field_dst8 = av_strdup(*field_src8);
if (*field_src8 && !*field_dst8)
ret = AVERROR(ENOMEM);
} else if (o->type == AV_OPT_TYPE_BINARY) {


Loading…
Cancel
Save