From caea3f01c32b0d717ffa91709f8aee78921dfd4d Mon Sep 17 00:00:00 2001 From: "j-h.choi" Date: Fri, 13 Jun 2025 15:28:49 +0900 Subject: [PATCH] [Bug] Fix memory leak Change-Id: I434786e6ee2138bbd4db72738967484bfd38d98c --- NativeLauncher/util/utils.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/NativeLauncher/util/utils.cc b/NativeLauncher/util/utils.cc index d951450..71554d9 100644 --- a/NativeLauncher/util/utils.cc +++ b/NativeLauncher/util/utils.cc @@ -1105,6 +1105,7 @@ bool hasResControl(const std::string& pkgId) if (flag) { resControl = true; + pkgmgrinfo_appinfo_destroy_appinfo(app_handle); break; } -- 2.34.1