From f71490ce7661b3951711932b11a52e2bd134b4e4 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Thu, 30 Oct 2008 20:12:09 +0000 Subject: [PATCH] - Fix ... svn path=/trunk/; revision=37107 --- reactos/dll/win32/iphlpapi/resinfo_reactos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/iphlpapi/resinfo_reactos.c b/reactos/dll/win32/iphlpapi/resinfo_reactos.c index 5a8a2313a22..3a540dcc664 100644 --- a/reactos/dll/win32/iphlpapi/resinfo_reactos.c +++ b/reactos/dll/win32/iphlpapi/resinfo_reactos.c @@ -244,6 +244,6 @@ PIPHLP_RES_INFO getResInfo() { VOID disposeResInfo( PIPHLP_RES_INFO InfoPtr ) { - RtlFreeHeap( GetProcessHeap(), 0, InfoPtr ); HeapFree(GetProcessHeap(), 0, InfoPtr->DnsList); + RtlFreeHeap( GetProcessHeap(), 0, InfoPtr ); }