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 177f06c3c2 Coverity 1518572: Uninitialized pointer field (#10511)
177f06c3c2 is described below
commit 177f06c3c27dba61e4574a994d6517ca7c32b8e5
Author: Bryan Call <[email protected]>
AuthorDate: Mon Sep 25 06:52:30 2023 -0700
Coverity 1518572: Uninitialized pointer field (#10511)
Uninitialized pointers in traffic_cache_tool class CacheScan
---
src/traffic_cache_tool/CacheScan.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/traffic_cache_tool/CacheScan.h
b/src/traffic_cache_tool/CacheScan.h
index 5a01d3e80f..1206bd2b46 100644
--- a/src/traffic_cache_tool/CacheScan.h
+++ b/src/traffic_cache_tool/CacheScan.h
@@ -39,8 +39,8 @@ namespace ct
{
class CacheScan
{
- Stripe *stripe;
- url_matcher *u_matcher;
+ Stripe *stripe = nullptr;
+ url_matcher *u_matcher = nullptr;
public:
CacheScan(Stripe *str, swoc::file::path const &path) : stripe(str)