This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 90d3950d40 Coverity 1361277: Uninitialized scalar field (#10501)
90d3950d40 is described below

commit 90d3950d405fd79156ceb9f4cd8888d62e2d3e0d
Author: Bryan Call <bc...@apache.org>
AuthorDate: Fri Sep 22 16:11:49 2023 -0700

    Coverity 1361277: Uninitialized scalar field (#10501)
---
 proxy/logging/LogConfig.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/proxy/logging/LogConfig.cc b/proxy/logging/LogConfig.cc
index ec9e9e9362..2df7b4c96e 100644
--- a/proxy/logging/LogConfig.cc
+++ b/proxy/logging/LogConfig.cc
@@ -85,6 +85,7 @@ LogConfig::setup_default_values()
   rolling_interval_sec     = 86400; // 24 hours
   rolling_offset_hr        = 0;
   rolling_size_mb          = 10;
+  rolling_min_count        = 0;
   rolling_max_count        = 0;
   rolling_allow_empty      = false;
   auto_delete_rolled_files = true;

Reply via email to