From 3df5fb9f7d3f8d1235c1b28b1f3bedf399ff7128 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Sat, 30 Dec 2023 16:29:41 -0500 Subject: [PATCH] MT#55283 fix typo Warned-bu: Coverity Change-Id: I39325f49f77478134188361544676293151c70db --- daemon/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index d6a2cd60b..e8ee65431 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -4362,7 +4362,7 @@ static bool call_monologues_associations_left(call_t * c) { */ static bool call_totag_subscribed_to_monologue(const str * totag, const struct call_monologue * monologue) { - if (!totag && !totag->s) + if (!totag || !totag->s) return false; for (int i = 0; i < monologue->medias->len; i++)