From: Christos Tsantilas Date: Wed, 13 Dec 2017 11:15:25 +0000 (+0200) Subject: Fix Coverity Scan CID 1424887 (#100) X-Git-Tag: SQUID_4_0_23~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=afee251a5239d67ed888c4abcf539fc3226cbaf0;p=thirdparty%2Fsquid.git Fix Coverity Scan CID 1424887 (#100) Fixed harmless missing data member initialization --- diff --git a/src/ssl/cert_validate_message.h b/src/ssl/cert_validate_message.h index 1995e25ff0..3c8d7f8c83 100644 --- a/src/ssl/cert_validate_message.h +++ b/src/ssl/cert_validate_message.h @@ -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; };