From bfd080f592a4a8426c90f7c98eff2d5616583844 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Mon, 19 May 2003 04:27:13 +0000 Subject: [PATCH] fix leak of xmms config struct in init --- src/plugin_xmms/plugin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugin_xmms/plugin.c b/src/plugin_xmms/plugin.c index 64028d80..9d647381 100644 --- a/src/plugin_xmms/plugin.c +++ b/src/plugin_xmms/plugin.c @@ -182,6 +182,8 @@ void FLAC_XMMS__init() flac_cfg.output.resolution.replaygain.bps_out = 16; decoder_ = FLAC__file_decoder_new(); + + xmms_cfg_free(cfg); } int FLAC_XMMS__is_our_file(char *filename)