From c31f51a2ecd3f03ffdaecced34c35e3f3e0217bb Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 17 Jan 2024 12:10:24 -0500 Subject: [PATCH] MT#55283 fix missing return Things go boom without this. Change-Id: I405e2d0f18da3d7089e82e6d588dfbb5adee9a48 --- daemon/call_interfaces.c | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon/call_interfaces.c b/daemon/call_interfaces.c index e128d97ec..1142cd876 100644 --- a/daemon/call_interfaces.c +++ b/daemon/call_interfaces.c @@ -962,6 +962,7 @@ static void call_ng_flags_sdp_attr_helper(struct sdp_ng_flags *out, str *s, void if (!sm) { ilog(LOG_WARN, "SDP manipulations: unsupported SDP section '" STR_FORMAT "' targeted.", STR_FMT(&token)); + return; } struct sdp_attr_helper *h = helper; h->fn(out, s, &G_STRUCT_MEMBER(void *, sm, h->offset));