This is an automated email from the ASF dual-hosted git repository.
zwoop 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 8595cacf62 Fixes Coverity 1513058, introduced with #9643 (#9860)
8595cacf62 is described below
commit 8595cacf620816e243ae00da0bda7a37f03af1c1
Author: Leif Hedstrom <[email protected]>
AuthorDate: Fri Jun 16 13:57:40 2023 -0600
Fixes Coverity 1513058, introduced with #9643 (#9860)
---
plugins/header_rewrite/operator.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/header_rewrite/operator.h
b/plugins/header_rewrite/operator.h
index 7c2b6bdfe7..6157900293 100644
--- a/plugins/header_rewrite/operator.h
+++ b/plugins/header_rewrite/operator.h
@@ -85,7 +85,7 @@ public:
protected:
std::string _header;
- const char *_header_wks;
+ const char *_header_wks = nullptr;
};
///////////////////////////////////////////////////////////////////////////////