We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60c606 commit ba3b1c1Copy full SHA for ba3b1c1
docs/CHANGELOG.md
@@ -1,6 +1,10 @@
1
# Changelog
2
All notable changes to this project will be documented in this file.
3
4
+## [7.5.5] - 2019-12-17
5
+
6
+(tls options client) TLSOptions struct _validated member should be initialized to false
7
8
## [7.5.4] - 2019-12-16
9
10
(websocket client) improve the error message when connecting to a non websocket server
ixwebsocket/IXSocketTLSOptions.h
@@ -45,6 +45,6 @@ namespace ix
45
46
private:
47
mutable std::string _errMsg;
48
- mutable bool _validated;
+ mutable bool _validated = false;
49
};
50
} // namespace ix
ixwebsocket/IXWebSocketVersion.h
@@ -6,4 +6,4 @@
#pragma once
-#define IX_WEBSOCKET_VERSION "7.5.4"
+#define IX_WEBSOCKET_VERSION "7.5.5"
0 commit comments