From: Victor Julien Date: Sat, 4 Jun 2022 06:49:41 +0000 (+0200) Subject: smtp: turn assertions in to debug asserts X-Git-Tag: suricata-5.0.10~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47d84ce5ac44bf459ea027c42b2167ac240581b5;p=thirdparty%2Fsuricata.git smtp: turn assertions in to debug asserts (cherry picked from commit 77fae275efb54221d9cf3badd25df38eb1ea0b86) --- diff --git a/src/app-layer-smtp.c b/src/app-layer-smtp.c index d4851ab9fe..5ddb37182c 100644 --- a/src/app-layer-smtp.c +++ b/src/app-layer-smtp.c @@ -1497,7 +1497,7 @@ static int SMTPParse(int direction, Flow *f, SMTPState *state, /* toserver */ if (direction == 0) { while (res == 0) { - BUG_ON(state->discard_till_lf); + DEBUG_VALIDATE_BUG_ON(state->discard_till_lf); if (!state->discard_till_lf) { if ((state->current_line_delimiter_len > 0) && (SMTPProcessRequest(state, f, pstate) == -1)) SCReturnInt(-1); @@ -1515,7 +1515,7 @@ static int SMTPParse(int direction, Flow *f, SMTPState *state, /* toclient */ } else { while (res == 0) { - BUG_ON(state->discard_till_lf); + DEBUG_VALIDATE_BUG_ON(state->discard_till_lf); if (!state->discard_till_lf) { if ((state->current_line_delimiter_len > 0) && (SMTPProcessReply(state, f, pstate, thread_data) == -1))