Commit 9d04c6ad authored by benwells's avatar benwells Committed by Commit bot

Fix uninitialized reads in DnsConfigServiceWin tests.

BUG=486575

Review URL: https://codereview.chromium.org/1132333003

Cr-Commit-Position: refs/heads/master@{#329499}
parent 67840e51
......@@ -446,6 +446,19 @@ DnsSystemSettings::DnsSystemSettings()
tcpip_devolution(),
append_to_multi_label_name(),
have_name_resolution_policy(false) {
policy_search_list.set = false;
tcpip_search_list.set = false;
tcpip_domain.set = false;
primary_dns_suffix.set = false;
policy_devolution.enabled.set = false;
policy_devolution.level.set = false;
dnscache_devolution.enabled.set = false;
dnscache_devolution.level.set = false;
tcpip_devolution.enabled.set = false;
tcpip_devolution.level.set = false;
append_to_multi_label_name.set = false;
}
DnsSystemSettings::~DnsSystemSettings() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment