From 06ebf80d4b4bc124003f474c6976c972263d6b3f Mon Sep 17 00:00:00 2001 From: Junghyun Yeon Date: Mon, 13 Sep 2021 09:51:10 +0900 Subject: [PATCH] Fix static analysis Change-Id: Id188d8a5e68d4c326ca6b27dc3660c687729048c Signed-off-by: Junghyun Yeon --- client/src/pkgmgr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/pkgmgr.c b/client/src/pkgmgr.c index 509d2a6..990005c 100644 --- a/client/src/pkgmgr.c +++ b/client/src/pkgmgr.c @@ -3129,6 +3129,7 @@ API int pkgmgr_res_event_info_add_path_state(pkgmgr_res_event_info *handle, path_state->path = strdup(path); if (path_state->path == NULL) { ERR("out of memory"); + free(path_state); return PKGMGR_R_ENOMEM; } path_state->state = state; -- 2.34.1