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 dd0509387b Coverity 1518610: Uninitialized scalar field (#10509)
dd0509387b is described below

commit dd0509387b7ee7e4e6b9563af075eee741dcfc36
Author: Bryan Call <bc...@apache.org>
AuthorDate: Mon Sep 25 06:55:11 2023 -0700

    Coverity 1518610: Uninitialized scalar field (#10509)
---
 plugins/experimental/icap/icap_plugin.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/experimental/icap/icap_plugin.cc 
b/plugins/experimental/icap/icap_plugin.cc
index b1fee8dbf1..2ba11cff8d 100644
--- a/plugins/experimental/icap/icap_plugin.cc
+++ b/plugins/experimental/icap/icap_plugin.cc
@@ -60,7 +60,7 @@ struct TransformData {
   State state = State::BEGIN;
   const TSHttpTxn txn;
 
-  int64_t server_reply_content_length;
+  int64_t server_reply_content_length = 0;
 
   TSIOBuffer input_buf          = nullptr;
   TSIOBufferReader input_reader = nullptr;

Reply via email to