From f6765e0633cd2e48e708c92607365379915507ab Mon Sep 17 00:00:00 2001 From: Dong Anyuan <donganyuan@cn.fujitsu.com> Date: Thu, 20 Jun 2019 14:00:24 +0900 Subject: [PATCH] Fix Coverity Scan CID 340232 (Variable message_p going out of scope leaks the storage it points to.) --- openair3/S1AP/s1ap_eNB_handlers.c | 1 + 1 file changed, 1 insertion(+) diff --git a/openair3/S1AP/s1ap_eNB_handlers.c b/openair3/S1AP/s1ap_eNB_handlers.c index 22501bf9a5..e2396d015f 100644 --- a/openair3/S1AP/s1ap_eNB_handlers.c +++ b/openair3/S1AP/s1ap_eNB_handlers.c @@ -1545,6 +1545,7 @@ int s1ap_eNB_handle_s1_path_switch_request_ack(uint32_t assoc_id, S1AP_ERROR("[SCTP %d] Received path switch request ack for non " "existing UE context 0x%06lx\n", assoc_id, ie->value.choice.ENB_UE_S1AP_ID); + itti_free(ITTI_MSG_ORIGIN_ID(message_p), message_p); return -1; } -- GitLab