1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

Fix two bogus uninitalized variable warnings

(This used to be commit 194ea682d9a5c12a0125fecc20349ca9cc3d3ea1)
This commit is contained in:
Volker Lendecke 2008-05-25 13:44:59 +02:00
parent f1d160f333
commit aacfa7b3ad

View File

@ -920,7 +920,8 @@ static NTSTATUS make_dc_info_from_cldap_reply(TALLOC_CTX *mem_ctx,
union nbt_cldap_netlogon *r,
struct netr_DsRGetDCNameInfo **info)
{
const char *dc_hostname, *dc_domain_name;
const char *dc_hostname = NULL;
const char *dc_domain_name = NULL;
const char *dc_address = NULL;
const char *dc_forest = NULL;
uint32_t dc_address_type = 0;