diff options
author | saturneric <[email protected]> | 2024-07-27 08:56:19 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-27 08:56:19 +0000 |
commit | 1c4445408577a3bd5743d344cdd31f21d81dc9c0 (patch) | |
tree | 18deeb8cac0c66f831c4dd0f9600487c4855cbdf /src/core/module/ModuleInit.cpp | |
parent | fix: indirect memory leak issues (diff) | |
download | GpgFrontend-1c4445408577a3bd5743d344cdd31f21d81dc9c0.tar.gz GpgFrontend-1c4445408577a3bd5743d344cdd31f21d81dc9c0.zip |
fix: discover and solve some memory issues
Diffstat (limited to 'src/core/module/ModuleInit.cpp')
-rw-r--r-- | src/core/module/ModuleInit.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/module/ModuleInit.cpp b/src/core/module/ModuleInit.cpp index 0e41e949..dc001798 100644 --- a/src/core/module/ModuleInit.cpp +++ b/src/core/module/ModuleInit.cpp @@ -68,14 +68,13 @@ auto LoadIntegratedMods() -> bool { } if (!QDir(mods_path).exists()) { - qCWarning(core) << "integrated module directory at path " << mods_path + qCWarning(core) << "integrated module directory at path: " << mods_path << " not found, abort..."; return false; } LoadModuleFromPath(mods_path, true); - qCDebug(core, "load integrated modules done."); return true; } |