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

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


The following commit(s) were added to refs/heads/9.2.x by this push:
     new 9f6ababfed Initialize the OptionInfo in the ESI plugin using default 
member initializer (#12315)
9f6ababfed is described below

commit 9f6ababfed6c9d0266ee1d7e1703a09413ca48cb
Author: Katsutoshi Ikenoya <kiken...@lycorp.co.jp>
AuthorDate: Tue Jul 1 07:20:38 2025 +0900

    Initialize the OptionInfo in the ESI plugin using default member 
initializer (#12315)
---
 plugins/esi/esi.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/plugins/esi/esi.cc b/plugins/esi/esi.cc
index 06d37dfbf5..1a462923e1 100644
--- a/plugins/esi/esi.cc
+++ b/plugins/esi/esi.cc
@@ -52,10 +52,10 @@ using namespace EsiLib;
 using namespace Stats;
 
 struct OptionInfo {
-  bool packed_node_support;
-  bool private_response;
-  bool disable_gzip_output;
-  bool first_byte_flush;
+  bool packed_node_support{false};
+  bool private_response{false};
+  bool disable_gzip_output{false};
+  bool first_byte_flush{false};
   unsigned max_inclusion_depth{3};
 };
 

Reply via email to