]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix Coverity Scan CID 1424887 (#100)
authorChristos Tsantilas <christos@chtsanti.net>
Wed, 13 Dec 2017 11:15:25 +0000 (13:15 +0200)
committerGitHub <noreply@github.com>
Wed, 13 Dec 2017 11:15:25 +0000 (13:15 +0200)
Fixed harmless missing data member initialization

src/ssl/cert_validate_message.h

index 1995e25ff01e955565c121522ce2d85294fae852..3c8d7f8c83b3f95630057ce43a41cea4898ca05a 100644 (file)
@@ -64,7 +64,7 @@ public:
     /// If none found a new RecvdError item added with the given id;
     RecvdError &getError(int errorId);
     RecvdErrors errors; ///< The list of parsed errors
-    Helper::ResultCode resultCode; ///< The helper result code
+    Helper::ResultCode resultCode = Helper::Unknown; ///< The helper result code
     Security::SessionPointer ssl;
 };