From a196acdf42dc381fb600f1df34c550923529bf13 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 f165ea4..2b8d8eb 100644 --- a/NativeLauncher/util/utils.cc +++ b/NativeLauncher/util/utils.cc @@ -1049,6 +1049,7 @@ bool hasResControl(const std::string& pkgId) if (flag) { resControl = true; + pkgmgrinfo_appinfo_destroy_appinfo(app_handle); break; } -- 2.34.1