mirror of https://github.com/getdnsapi/getdns.git
Merge pull request #462 from doublez13/develop
Fix uninitialized value in tls_create_object
This commit is contained in:
commit
16c20fe04d
|
@ -926,6 +926,7 @@ upstream_init(getdns_upstream *upstream,
|
|||
/* For sharing a socket to this upstream with TCP */
|
||||
upstream->fd = -1;
|
||||
upstream->expires = 0;
|
||||
upstream->tls_fallback_ok = 0;
|
||||
upstream->tls_obj = NULL;
|
||||
upstream->tls_session = NULL;
|
||||
upstream->tls_cipher_list = NULL;
|
||||
|
|
Loading…
Reference in New Issue