Merge pull request #18406 from nicolasnoble/non-trivial-memset

Removing a few more non-trivial struct memsets, part 3.
pull/18451/head
Nicolas Noble 6 years ago committed by GitHub
commit cc125b9a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/core/lib/http/httpcli_security_connector.cc

@ -59,7 +59,6 @@ class grpc_httpcli_ssl_channel_security_connector final
tsi_result InitHandshakerFactory(const char* pem_root_certs,
const tsi_ssl_root_certs_store* root_store) {
tsi_ssl_client_handshaker_options options;
memset(&options, 0, sizeof(options));
options.pem_root_certs = pem_root_certs;
options.root_store = root_store;
return tsi_create_ssl_client_handshaker_factory_with_options(

Loading…
Cancel
Save