From acec4be2e4f5d174178842a0fa474d13f0084f9c Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Thu, 26 May 2005 13:44:14 +0000 Subject: [PATCH] Mark initial loader APIs are INIT_FUNCTION so they can be freed svn path=/trunk/; revision=15512 --- reactos/ntoskrnl/ldr/sysdll.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/ntoskrnl/ldr/sysdll.c b/reactos/ntoskrnl/ldr/sysdll.c index 8567ab57407..d75db35b0d6 100644 --- a/reactos/ntoskrnl/ldr/sysdll.c +++ b/reactos/ntoskrnl/ldr/sysdll.c @@ -56,6 +56,7 @@ PVOID LdrpGetSystemDllRaiseExceptionDispatcher(VOID) NTSTATUS STDCALL +INIT_FUNCTION LdrpGetSystemDllEntryPoints(VOID) { ANSI_STRING ProcedureName; @@ -169,6 +170,7 @@ LdrpMapSystemDll(PEPROCESS Process, NTSTATUS STDCALL +INIT_FUNCTION LdrpInitializeSystemDll(VOID) { UNICODE_STRING DllPathname = ROS_STRING_INITIALIZER(L"\\SystemRoot\\system32\\ntdll.dll");