Browse Source

avformat/pcmdec: fix memory leak

Fixes CID 1396267
tags/n3.4
Timo Rothenpieler 8 years ago
parent
commit
a5b5ce2658
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavformat/pcmdec.c

+ 2
- 0
libavformat/pcmdec.c View File

@@ -68,6 +68,7 @@ static int pcm_read_header(AVFormatContext *s)
av_log(s, AV_LOG_ERROR,
"Invalid sample_rate found in mime_type \"%s\"\n",
mime_type);
av_freep(&mime_type);
return AVERROR_INVALIDDATA;
}
st->codecpar->sample_rate = rate;
@@ -75,6 +76,7 @@ static int pcm_read_header(AVFormatContext *s)
st->codecpar->channels = channels;
}
}
av_freep(&mime_type);

st->codecpar->bits_per_coded_sample =
av_get_bits_per_sample(st->codecpar->codec_id);


Loading…
Cancel
Save