From d3bb9133d716690a43181ed0987ccceb38af5684 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 19 Dec 2024 15:04:46 -0400 Subject: [PATCH] MT#61368 annotate call_get with nonnull Change-Id: I6b23305bb8dfbbcd73e97b2a1bd5feca67c2a02c --- include/call.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/call.h b/include/call.h index 6b70e77b9..2726be840 100644 --- a/include/call.h +++ b/include/call.h @@ -830,6 +830,7 @@ int call_get_mono_dialogue(struct call_monologue *monologues[2], call_t *call, sdp_ng_flags *); struct call_monologue *call_get_monologue(call_t *call, const str *fromtag); struct call_monologue *call_get_or_create_monologue(call_t *call, const str *fromtag); +__attribute__((nonnull(1))) call_t *call_get(const str *callid); __attribute__((nonnull(2, 3))) int monologue_offer_answer(struct call_monologue *monologues[2], sdp_streams_q *streams, sdp_ng_flags *flags);