(tls options client) TLSOptions struct _validated member should be initialized to false

This commit is contained in:
Benjamin Sergeant 2019-12-17 14:10:28 -08:00
parent c60c606e0f
commit ba3b1c1a0f
3 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -45,6 +45,6 @@ namespace ix
private:
mutable std::string _errMsg;
mutable bool _validated;
mutable bool _validated = false;
};
} // namespace ix

View File

@ -6,4 +6,4 @@
#pragma once
#define IX_WEBSOCKET_VERSION "7.5.4"
#define IX_WEBSOCKET_VERSION "7.5.5"