Skip to content

Commit ba3b1c1

Browse files
committed
(tls options client) TLSOptions struct _validated member should be initialized to false
1 parent c60c606 commit ba3b1c1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [7.5.5] - 2019-12-17
5+
6+
(tls options client) TLSOptions struct _validated member should be initialized to false
7+
48
## [7.5.4] - 2019-12-16
59

610
(websocket client) improve the error message when connecting to a non websocket server

ixwebsocket/IXSocketTLSOptions.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ namespace ix
4545

4646
private:
4747
mutable std::string _errMsg;
48-
mutable bool _validated;
48+
mutable bool _validated = false;
4949
};
5050
} // namespace ix

ixwebsocket/IXWebSocketVersion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
#pragma once
88

9-
#define IX_WEBSOCKET_VERSION "7.5.4"
9+
#define IX_WEBSOCKET_VERSION "7.5.5"

0 commit comments

Comments
 (0)