Browse Source

avformat/ffmenc: Use av_freep() to avoid leaving stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
b68d902b6e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/ffmenc.c

+ 1
- 1
libavformat/ffmenc.c View File

@@ -137,7 +137,7 @@ static int ffm_write_header_codec_ctx(AVIOContext *pb, AVCodecContext *ctx, unsi
goto fail;
if (buf && strlen(buf)) {
avio_write(tmp, buf, strlen(buf));
av_free(buf);
av_freep(&buf);
need_coma = 1;
}
if ((ret = av_opt_serialize(ctx, 0, SKIP_DEFAULTS | OPT_FLAGS_EXACT, &buf, '=', ',')) < 0)


Loading…
Cancel
Save