mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[WININET] Fix usage of uninitialized variable
This commit is contained in:
parent
560b66a2d5
commit
b809275cbe
1 changed files with 1 additions and 1 deletions
|
@ -2405,7 +2405,7 @@ static WCHAR *build_wpad_url( const char *hostname, const struct addrinfo *ai )
|
|||
static WCHAR *detect_proxy_autoconfig_url_dns(void)
|
||||
{
|
||||
char *fqdn, *domain, *p;
|
||||
WCHAR *ret;
|
||||
WCHAR *ret = NULL;
|
||||
|
||||
if (!(fqdn = get_computer_name( ComputerNamePhysicalDnsFullyQualified ))) return NULL;
|
||||
if (!(domain = get_computer_name( ComputerNamePhysicalDnsDomain )))
|
||||
|
|
Loading…
Reference in a new issue