From f7769a858820dfe117cc894c7b91d597f7d65c80 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 5094f1d..650b2fe 100644 --- a/client/src/pkgmgr.c +++ b/client/src/pkgmgr.c @@ -3131,6 +3131,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