From 54d4707edc51507ed9956db2c30e32e24fd13597 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Tue, 16 Apr 2013 12:05:42 -0400 Subject: AUDIO: Fix invalid free call --- audio/decoders/qdm2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio') diff --git a/audio/decoders/qdm2.cpp b/audio/decoders/qdm2.cpp index 732de311aa..b70fc39e48 100644 --- a/audio/decoders/qdm2.cpp +++ b/audio/decoders/qdm2.cpp @@ -872,7 +872,7 @@ void initVlcSparse(VLC *vlc, int nb_bits, int nb_codes, codes, codes_wrap, codes_size, symbols, symbols_wrap, symbols_size, 0, 0, 4 | 2) < 0) { - free(&vlc->table); + free(vlc->table); return; // Error } -- cgit v1.2.3