From a8bb249d075f8587f62ed794ca70bf7a2aecc40d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 21 Aug 2005 21:09:44 +0000 Subject: [PATCH] Alfredo Tupone provided a fix for the Windows code in get_iphlpapi_dns_info() when getting the DNS server etc. --- CHANGES | 5 +++++ ares_init.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 1642249..52e2d9d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,10 @@ Changelog for the c-ares project +* August 21 + +- Alfredo Tupone provided a fix for the Windows code in get_iphlpapi_dns_info() + when getting the DNS server etc. + * June 19 - Added some checks for the addrinfo structure. diff --git a/ares_init.c b/ares_init.c index b78c927..f97f701 100644 --- a/ares_init.c +++ b/ares_init.c @@ -327,6 +327,7 @@ static int get_iphlpapi_dns_info (char *ret_buf, size_t ret_size) size_t ip_size = sizeof("255.255.255.255,")-1; size_t left = ret_size; char *ret = ret_buf; + HRESULT res; if (!fi) return (0); @@ -339,7 +340,8 @@ static int get_iphlpapi_dns_info (char *ret_buf, size_t ret_size) if (!GetNetworkParams) goto quit; - if ((*GetNetworkParams) (fi, &size) != ERROR_BUFFER_OVERFLOW) + res = (*GetNetworkParams) (fi, &size); + if ((res != ERROR_BUFFER_OVERFLOW) && (res != ERROR_SUCCESS)) goto quit; fi = alloca (size); -- 2.7.4