From ba3b1c1a0fc3596c9ba0c3ce4840bcba49bb5fd6 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Tue, 17 Dec 2019 14:10:28 -0800 Subject: [PATCH] (tls options client) TLSOptions struct _validated member should be initialized to false --- docs/CHANGELOG.md | 4 ++++ ixwebsocket/IXSocketTLSOptions.h | 2 +- ixwebsocket/IXWebSocketVersion.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c3396efb..bb3a735c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [7.5.5] - 2019-12-17 + +(tls options client) TLSOptions struct _validated member should be initialized to false + ## [7.5.4] - 2019-12-16 (websocket client) improve the error message when connecting to a non websocket server diff --git a/ixwebsocket/IXSocketTLSOptions.h b/ixwebsocket/IXSocketTLSOptions.h index 5c8dd467..a518ce0a 100644 --- a/ixwebsocket/IXSocketTLSOptions.h +++ b/ixwebsocket/IXSocketTLSOptions.h @@ -45,6 +45,6 @@ namespace ix private: mutable std::string _errMsg; - mutable bool _validated; + mutable bool _validated = false; }; } // namespace ix diff --git a/ixwebsocket/IXWebSocketVersion.h b/ixwebsocket/IXWebSocketVersion.h index aa63a9ba..5f2cd89b 100644 --- a/ixwebsocket/IXWebSocketVersion.h +++ b/ixwebsocket/IXWebSocketVersion.h @@ -6,4 +6,4 @@ #pragma once -#define IX_WEBSOCKET_VERSION "7.5.4" +#define IX_WEBSOCKET_VERSION "7.5.5"