From 0b9007ce888006339ffbfe4a88c3c0e43d090b60 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 (cherry picked from commit 3df5fb9f7d3f8d1235c1b28b1f3bedf399ff7128) --- daemon/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index 5f067807f..91fde7953 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -4445,7 +4445,7 @@ struct media_subscription * call_media_subscribed_to_monologue(const struct call */ 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++)