Fixed a memory leak: Decoder objects were never destroyed!
This commit is contained in:
parent
f8f792f23f
commit
243993434e
@ -30,7 +30,7 @@
|
||||
#define VER_LAMEXP_MINOR_LO 2
|
||||
#define VER_LAMEXP_TYPE Alpha
|
||||
#define VER_LAMEXP_PATCH 15
|
||||
#define VER_LAMEXP_BUILD 523
|
||||
#define VER_LAMEXP_BUILD 526
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Tools versions
|
||||
|
@ -154,6 +154,7 @@ void ProcessThread::processFile()
|
||||
connect(decoder, SIGNAL(messageLogged(QString)), this, SLOT(handleMessage(QString)), Qt::DirectConnection);
|
||||
|
||||
bSuccess = decoder->decode(sourceFile, tempFile, &m_aborted);
|
||||
LAMEXP_DELETE(decoder);
|
||||
|
||||
if(bSuccess)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user