From: Amos Jeffries Date: Fri, 9 Jun 2017 03:48:10 +0000 (+1200) Subject: Fix missing return after rev.15176 X-Git-Tag: M-staged-PR71~134 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=03eb3b04f7c79835d82622476573b70f45c6a0d6;p=thirdparty%2Fsquid.git Fix missing return after rev.15176 Detected by Coverity Scan. Issue 1412064 --- diff --git a/src/log/Config.cc b/src/log/Config.cc index a1ed0fe0b5..21111e309a 100644 --- a/src/log/Config.cc +++ b/src/log/Config.cc @@ -22,6 +22,7 @@ Log::LogConfig::parseFormats() if (!(name = ConfigParser::NextToken())) { debugs(3, DBG_CRITICAL, "FATAL: missing logformat details in " << cfg_filename << " line " << config_lineno); self_destruct(); + return; } // check for re-definition of built-in formats