]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/common/address_helper.cc
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / common / address_helper.cc
index 8774892211da2c218f7d9f62ea948f462e8d6e45..cdb8591f17a760abc33d72a008da40d3ed57ba9a 100644 (file)
@@ -22,6 +22,7 @@ int entity_addr_from_url(entity_addr_t *addr /* out */, const char *url)
                string host(m[2].first, m[2].second);
                string port(m[3].first, m[3].second);
                addrinfo hints;
+               // FIPS zeroization audit 20191115: this memset is fine.
                memset(&hints, 0, sizeof(hints));
                hints.ai_family = PF_UNSPEC;
                addrinfo *res;