From a749e2d1879455eda15396bb91d236d67987859d Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Mon, 15 Mar 2021 18:28:32 +0100 Subject: [PATCH] Fixed an uninitialized variable reported by Valgrind. --- es-app/src/CollectionSystemsManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/es-app/src/CollectionSystemsManager.cpp b/es-app/src/CollectionSystemsManager.cpp index 24cb9b1ca..54dcb845f 100644 --- a/es-app/src/CollectionSystemsManager.cpp +++ b/es-app/src/CollectionSystemsManager.cpp @@ -80,6 +80,7 @@ CollectionSystemsManager::CollectionSystemsManager(Window* window) : mWindow(win Utils::FileSystem::createDirectory(path); mIsEditingCustom = false; + mHasEnabledCustomCollection = false; mEditingCollection = "Favorites"; mEditingCollectionSystemData = nullptr; mCustomCollectionsBundle = nullptr;