Browse Source

MT#55283 fix missing return

Things go boom without this.

Change-Id: I405e2d0f18da3d7089e82e6d588dfbb5adee9a48
pull/1786/head
Richard Fuchs 2 years ago
parent
commit
8e1ba9e1e9
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      daemon/call_interfaces.c

+ 1
- 0
daemon/call_interfaces.c View File

@ -962,6 +962,7 @@ static void call_ng_flags_sdp_attr_helper(sdp_ng_flags *out, str *s, helper_arg
if (!sm) { if (!sm) {
ilog(LOG_WARN, "SDP manipulations: unsupported SDP section '" STR_FORMAT "' targeted.", ilog(LOG_WARN, "SDP manipulations: unsupported SDP section '" STR_FORMAT "' targeted.",
STR_FMT(&token)); STR_FMT(&token));
return;
} }
const struct sdp_attr_helper *h = arg.attr_helper; const struct sdp_attr_helper *h = arg.attr_helper;
h->fn(out, s, &G_STRUCT_MEMBER(void *, sm, h->offset)); h->fn(out, s, &G_STRUCT_MEMBER(void *, sm, h->offset));


Loading…
Cancel
Save