diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-02-14 18:44:30 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-02-22 18:13:37 +0100 |
commit | a2d0baa2d931feae7f820d4594528894fd4a46cb (patch) | |
tree | e576be98f17420e99d670380470be080441c6a31 /crypto/bio/bss_conn.c | |
parent | RT4334: Check UEFI before __STDC_VERSION__ for <inttypes.h> (diff) | |
download | openssl-a2d0baa2d931feae7f820d4594528894fd4a46cb.tar.xz openssl-a2d0baa2d931feae7f820d4594528894fd4a46cb.zip |
GH678: Add a few more zalloc
Remove some duplicated NULL/zero init.
Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bio/bss_conn.c')
-rw-r--r-- | crypto/bio/bss_conn.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index 98f4f69ec2..492fe01c03 100644 --- a/crypto/bio/bss_conn.c +++ b/crypto/bio/bss_conn.c @@ -271,12 +271,6 @@ BIO_CONNECT *BIO_CONNECT_new(void) return (NULL); ret->state = BIO_CONN_S_BEFORE; ret->connect_family = BIO_FAMILY_IPANY; - ret->param_hostname = NULL; - ret->param_service = NULL; - ret->info_callback = NULL; - ret->connect_mode = 0; - ret->addr_first = NULL; - ret->addr_iter = NULL; return (ret); } |