aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/xwma.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-29 20:48:03 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-29 20:48:03 +0200
commit375a0c03a9a401a328a94b3d9f5338ab1524f7ef (patch)
tree4d41fe0803bc9273a1efe0b0ccbc34f73b7f133e /libavformat/xwma.c
parentcf4dbe9affa1f40eccaf72213d9a3b6d71edb53b (diff)
downloadandroid_external_ffmpeg-375a0c03a9a401a328a94b3d9f5338ab1524f7ef.tar.gz
android_external_ffmpeg-375a0c03a9a401a328a94b3d9f5338ab1524f7ef.tar.bz2
android_external_ffmpeg-375a0c03a9a401a328a94b3d9f5338ab1524f7ef.zip
avformat/xwma: fix memleak of dpds_table
Fixes CID1087092 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/xwma.c')
-rw-r--r--libavformat/xwma.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c
index 4b1af2b733..127c097c44 100644
--- a/libavformat/xwma.c
+++ b/libavformat/xwma.c
@@ -130,8 +130,10 @@ static int xwma_read_header(AVFormatContext *s)
/* parse the remaining RIFF chunks */
for (;;) {
- if (pb->eof_reached)
- return AVERROR_EOF;
+ if (pb->eof_reached) {
+ ret = AVERROR_EOF;
+ goto end;
+ }
/* read next chunk tag */
tag = avio_rl32(pb);
size = avio_rl32(pb);
@@ -152,7 +154,8 @@ static int xwma_read_header(AVFormatContext *s)
/* Error out if there is more than one dpds chunk. */
if (dpds_table) {
av_log(s, AV_LOG_ERROR, "two dpds chunks present\n");
- return AVERROR_INVALIDDATA;
+ ret = AVERROR_INVALIDDATA;
+ goto end;
}
/* Compute the number of entries in the dpds chunk. */
@@ -184,8 +187,10 @@ static int xwma_read_header(AVFormatContext *s)
}
/* Determine overall data length */
- if (size < 0)
- return AVERROR_INVALIDDATA;
+ if (size < 0) {
+ ret = AVERROR_INVALIDDATA;
+ goto end;
+ }
if (!size) {
xwma->data_end = INT64_MAX;
} else
@@ -204,7 +209,8 @@ static int xwma_read_header(AVFormatContext *s)
av_log(s, AV_LOG_ERROR,
"Invalid bits_per_coded_sample %d for %d channels\n",
st->codec->bits_per_coded_sample, st->codec->channels);
- return AVERROR_INVALIDDATA;
+ ret = AVERROR_INVALIDDATA;
+ goto end;
}
st->duration = total_decoded_bytes / bytes_per_sample;
@@ -239,9 +245,10 @@ static int xwma_read_header(AVFormatContext *s)
st->duration = (size<<3) * st->codec->sample_rate / st->codec->bit_rate;
}
+end:
av_free(dpds_table);
- return 0;
+ return ret;
}
static int xwma_read_packet(AVFormatContext *s, AVPacket *pkt)