diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-08 14:30:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-08 14:30:30 +0200 |
commit | 6e6bd5481cf42a9765c492c77754d4633092cece (patch) | |
tree | 9d92b33bbf0729d55880a4289568980dd8189b1a /libavcodec/alsdec.c | |
parent | dcaf9660b610154a89495b3dd94bde2705746fc7 (diff) | |
download | ffmpeg-6e6bd5481cf42a9765c492c77754d4633092cece.tar.gz |
avcodec/alsdec: Clear MPEG4AudioConfig so that no use of uninitialized memory is possible
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r-- | libavcodec/alsdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index ace69746cf..33d6869a81 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -282,7 +282,7 @@ static av_cold int read_specific_config(ALSDecContext *ctx) GetBitContext gb; uint64_t ht_size; int i, config_offset; - MPEG4AudioConfig m4ac; + MPEG4AudioConfig m4ac = {0}; ALSSpecificConfig *sconf = &ctx->sconf; AVCodecContext *avctx = ctx->avctx; uint32_t als_id, header_size, trailer_size; |