From 266e481f4c0eb131e8d60183e6f0d485f8c9bba1 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sun, 17 May 2015 10:07:00 +0000 Subject: [PATCH] [WS2_32] RtlFreeHeap -> FreeHeap svn path=/trunk/; revision=67803 --- reactos/dll/win32/ws2_32/misc/catalog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/ws2_32/misc/catalog.c b/reactos/dll/win32/ws2_32/misc/catalog.c index 987dc56887c..d39c7faf612 100644 --- a/reactos/dll/win32/ws2_32/misc/catalog.c +++ b/reactos/dll/win32/ws2_32/misc/catalog.c @@ -68,7 +68,7 @@ CreateCatalogEntry(LPWSTR LibraryName) if (!RtlCreateUnicodeString(&Provider->LibraryName, LibraryName)) { - RtlFreeHeap(GlobalHeap, 0, Provider); + HeapFree(GlobalHeap, 0, Provider); return NULL; } -- 2.17.1