From: Alan T. DeKok Date: Tue, 15 Nov 2022 20:45:43 +0000 (-0500) Subject: quit coverity. Fixes CID #1516908 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23d4b8351b23d600ff8222900d1e5973e1798aba;p=thirdparty%2Ffreeradius-server.git quit coverity. Fixes CID #1516908 --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index 989c6904a38..3e9b94c169f 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -4397,9 +4397,8 @@ static unlang_t *compile_item(unlang_t *parent, unlang_compile_t *unlang_ctx, CO if (!op->thread_inst_size) return c; if (!fr_rb_insert(unlang_instruction_tree, c)) { - unlang_t *ex = fr_rb_find(unlang_instruction_tree, c); - cf_log_err(ci, "Instruction \"%s\" number %i conflicts with \"%s\" number %i", - c->debug_name, c->number, ex->debug_name, ex->number); + cf_log_err(ci, "Instruction \"%s\" number %i has conflict with previous one.", + c->debug_name, c->number); talloc_free(c); return NULL; }