Merge pull request #30019 from Faless/tls/stream_check
Add NULL check in SSL connect_to_stream
This commit is contained in:
commit
131a4b14fa
1 changed files with 2 additions and 0 deletions
|
|
@ -122,6 +122,8 @@ Error StreamPeerMbedTLS::_do_handshake() {
|
|||
|
||||
Error StreamPeerMbedTLS::connect_to_stream(Ref<StreamPeer> p_base, bool p_validate_certs, const String &p_for_hostname) {
|
||||
|
||||
ERR_FAIL_COND_V(p_base.is_null(), ERR_INVALID_PARAMETER);
|
||||
|
||||
base = p_base;
|
||||
int ret = 0;
|
||||
int authmode = p_validate_certs ? MBEDTLS_SSL_VERIFY_REQUIRED : MBEDTLS_SSL_VERIFY_NONE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue