Skip to content

Commit

Permalink
(tls options client) TLSOptions struct _validated member should be in…
Browse files Browse the repository at this point in the history
…itialized to false
  • Loading branch information
bsergean committed Dec 17, 2019
1 parent c60c606 commit ba3b1c1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ixwebsocket/IXSocketTLSOptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ namespace ix

private:
mutable std::string _errMsg;
mutable bool _validated;
mutable bool _validated = false;
};
} // namespace ix
2 changes: 1 addition & 1 deletion ixwebsocket/IXWebSocketVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

#pragma once

#define IX_WEBSOCKET_VERSION "7.5.4"
#define IX_WEBSOCKET_VERSION "7.5.5"

0 comments on commit ba3b1c1

Please sign in to comment.