1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-27 21:16:50 +03:00

initialize io_ctx to nullptr

This commit is contained in:
Zandt Tittle 2018-01-11 23:07:27 -06:00 committed by Ivan Grokhotkov
parent 02259a412c
commit ca25068733

View File

@ -420,7 +420,7 @@ protected:
size_t _available = 0; size_t _available = 0;
BufferList _writeBuffers; BufferList _writeBuffers;
bool _allowSelfSignedCerts = false; bool _allowSelfSignedCerts = false;
ClientContext* io_ctx; ClientContext* io_ctx = nullptr;
}; };
SSL_CTX* SSLContext::_ssl_ctx = nullptr; SSL_CTX* SSLContext::_ssl_ctx = nullptr;