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 f744bace6e Coverity 1508907: Uninitialized pointer field in statichit
plugin (#10513)
f744bace6e is described below
commit f744bace6e324cad3b008caea87bb3da8f9dfc5f
Author: Bryan Call <[email protected]>
AuthorDate: Mon Sep 25 06:50:12 2023 -0700
Coverity 1508907: Uninitialized pointer field in statichit plugin (#10513)
---
plugins/statichit/statichit.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/statichit/statichit.cc b/plugins/statichit/statichit.cc
index ac9ef9786b..7383739b32 100644
--- a/plugins/statichit/statichit.cc
+++ b/plugins/statichit/statichit.cc
@@ -134,7 +134,7 @@ struct StaticHitConfig {
bool disableExact = false;
bool isDirectory = false;
- TSCont cont;
+ TSCont cont = nullptr;
};
struct StaticHitRequest;