From 8e1ba9e1e94da95e069fb34d3c547cfd980c0185 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 d34f51d3c..bd50f7404 100644 --- a/daemon/call_interfaces.c +++ b/daemon/call_interfaces.c @@ -962,6 +962,7 @@ static void call_ng_flags_sdp_attr_helper(sdp_ng_flags *out, str *s, helper_arg if (!sm) { ilog(LOG_WARN, "SDP manipulations: unsupported SDP section '" STR_FORMAT "' targeted.", STR_FMT(&token)); + return; } const struct sdp_attr_helper *h = arg.attr_helper; h->fn(out, s, &G_STRUCT_MEMBER(void *, sm, h->offset));