From d269193c359f812721b6c0be931c39d64fb2b258 Mon Sep 17 00:00:00 2001 From: Andrey Volk Date: Mon, 17 Feb 2025 23:52:28 +0300 Subject: [PATCH] [mod_conference] Coverity 1320840 Logically dead code. Execution cannot reach this statement: d = ";" --- src/mod/applications/mod_conference/conference_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_conference/conference_api.c b/src/mod/applications/mod_conference/conference_api.c index 7e566367fb..6b76cc4a39 100644 --- a/src/mod/applications/mod_conference/conference_api.c +++ b/src/mod/applications/mod_conference/conference_api.c @@ -2133,7 +2133,7 @@ switch_status_t conference_api_sub_list(conference_obj_t *conference, switch_str d = argv[2 + argofs]; if (*d == '"') { - if (++d) { + if (*(++d)) { char *p; if ((p = strchr(d, '"'))) { *p = '\0';