From 073c2593c9f0aa4445a6fc1b9b24e6e52a8cc2c1 Mon Sep 17 00:00:00 2001 From: Burkhard Plaum Date: Sat, 27 Nov 2004 18:10:06 +0000 Subject: Memory leak fix patch by (Burkhard Plaum at< ipf.uni-stuttgart )dot( de>) Originally committed as revision 3717 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rv10.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/rv10.c') diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 65a741c68a..efba219a6a 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -518,10 +518,10 @@ static int rv10_decode_init(AVCodecContext *avctx) if (!done) { init_vlc(&rv_dc_lum, DC_VLC_BITS, 256, rv_lum_bits, 1, 1, - rv_lum_code, 2, 2); + rv_lum_code, 2, 2, 1); init_vlc(&rv_dc_chrom, DC_VLC_BITS, 256, rv_chrom_bits, 1, 1, - rv_chrom_code, 2, 2); + rv_chrom_code, 2, 2, 1); done = 1; } -- cgit v1.2.3