From ce970fc86361865755714ae88409ae8294320b1c Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Fri, 28 Apr 2017 23:17:58 -0700 Subject: [PATCH] Qt: Fix mCoreConfig leaking --- src/platform/qt/GameController.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/platform/qt/GameController.cpp b/src/platform/qt/GameController.cpp index 0beec0290..b903e4e0f 100644 --- a/src/platform/qt/GameController.cpp +++ b/src/platform/qt/GameController.cpp @@ -593,6 +593,7 @@ void GameController::cleanGame() { delete[] m_drawContext; delete[] m_frontBuffer; + mCoreConfigDeinit(&m_threadContext.core->config); m_threadContext.core->deinit(m_threadContext.core); m_threadContext.core = nullptr; m_gameOpen = false;