This is an automated email from the ASF dual-hosted git repository.
dmeden 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 7be43029da CID 1508836 - Fix uninitialized field (#10517)
7be43029da is described below
commit 7be43029daf38b804ccf62d44f278b60d6dd423c
Author: Damian Meden <[email protected]>
AuthorDate: Tue Sep 26 09:53:15 2023 +0200
CID 1508836 - Fix uninitialized field (#10517)
---
include/ts/apidefs.h.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/ts/apidefs.h.in b/include/ts/apidefs.h.in
index 0e475f94c0..a34aa7749d 100644
--- a/include/ts/apidefs.h.in
+++ b/include/ts/apidefs.h.in
@@ -1493,7 +1493,7 @@ char const TS_VERSION_STRING[] = "@TS_VERSION_STRING@";
struct TSRPCHandlerOptions {
struct Auth {
int restricted; ///< Tells the RPC Manager if the call can be delivered
or not based on the config rules.
- } auth;
+ } auth{1};
};
/// Configuration field info related to a parsed YAML node.