]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix uninitialized members in Security::PeerOptions rev.13952
authorAmos Jeffries <squid3@treenet.co.nz>
Thu, 5 Mar 2015 10:05:07 +0000 (02:05 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 5 Mar 2015 10:05:07 +0000 (02:05 -0800)
 Detected by Coverity Scan. Issue 1273438

src/security/PeerOptions.h

index 6e206ff623ac06e2e5a56f33ac9a4db33ca84201..71002985733f057a3eebc4bf107e458dfd729138 100644 (file)
@@ -20,7 +20,7 @@ namespace Security
 class PeerOptions
 {
 public:
-    PeerOptions() : sslVersion(0), encryptTransport(false) {}
+    PeerOptions() : parsedOptions(0), sslVersion(0), encryptTransport(false) {}
 
     /// parse a TLS squid.conf option
     void parse(const char *);