diff --git a/src/sgwu/sgwu-sm.c b/src/sgwu/sgwu-sm.c index e58760c3b..695285d0b 100644 --- a/src/sgwu/sgwu-sm.c +++ b/src/sgwu/sgwu-sm.c @@ -86,7 +86,6 @@ void sgwu_state_operational(ogs_fsm_t *s, sgwu_event_t *e) ogs_fsm_dispatch(&node->sm, e); if (OGS_FSM_CHECK(&node->sm, sgwu_pfcp_state_exception)) { ogs_error("PFCP state machine exception"); - break; } ogs_pkbuf_free(recvbuf); diff --git a/src/smf/smf-sm.c b/src/smf/smf-sm.c index 34e77f01e..54638ab53 100644 --- a/src/smf/smf-sm.c +++ b/src/smf/smf-sm.c @@ -416,7 +416,6 @@ void smf_state_operational(ogs_fsm_t *s, smf_event_t *e) ogs_fsm_dispatch(&pfcp_node->sm, e); if (OGS_FSM_CHECK(&pfcp_node->sm, smf_pfcp_state_exception)) { ogs_error("PFCP state machine exception"); - break; } ogs_pkbuf_free(recvbuf); diff --git a/src/upf/upf-sm.c b/src/upf/upf-sm.c index 71f55881a..ea44efb1d 100644 --- a/src/upf/upf-sm.c +++ b/src/upf/upf-sm.c @@ -91,7 +91,6 @@ void upf_state_operational(ogs_fsm_t *s, upf_event_t *e) ogs_fsm_dispatch(&node->sm, e); if (OGS_FSM_CHECK(&node->sm, upf_pfcp_state_exception)) { ogs_error("PFCP state machine exception"); - break; } ogs_pkbuf_free(recvbuf);