From 3c37f74539cf870d563c44b92fc82852b5c46012 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 26 Oct 2017 18:45:08 +0000 Subject: fixed memory leaks and other errors git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7649 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/cdaudio/decoder_cdaudio.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/plugins/Input/cdaudio/decoder_cdaudio.cpp') diff --git a/src/plugins/Input/cdaudio/decoder_cdaudio.cpp b/src/plugins/Input/cdaudio/decoder_cdaudio.cpp index 866d517e1..f1e3d543a 100644 --- a/src/plugins/Input/cdaudio/decoder_cdaudio.cpp +++ b/src/plugins/Input/cdaudio/decoder_cdaudio.cpp @@ -427,14 +427,13 @@ bool DecoderCDAudio::initialize() return false; } qDebug("DecoderCDAudio: found cd audio capable drive \"%s\"", *cd_drives); + cdio_free_device_list(cd_drives); //free device list } else { qWarning("DecoderCDAudio: unable to find cd audio drive."); return false; } - if (cd_drives && *cd_drives) //free device list - cdio_free_device_list(cd_drives); } else { -- cgit v1.2.3-13-gbd6f