From 03554ec52be156c09ab3e18ffc5f7a0e6fbdf8a1 Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Sat, 8 Nov 2014 07:26:00 +0100 Subject: [PATCH] ntdll-Vectored_Continue_Handler: Fix wrong prototype for RtlRemoveVectoredContinueHandler function. --- ...01-ntdll-Add-stubs-for-vectored-continue-handler.patch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/patches/ntdll-Vectored_Continue_Handler/0001-ntdll-Add-stubs-for-vectored-continue-handler.patch b/patches/ntdll-Vectored_Continue_Handler/0001-ntdll-Add-stubs-for-vectored-continue-handler.patch index 64a89540..df100b5b 100644 --- a/patches/ntdll-Vectored_Continue_Handler/0001-ntdll-Add-stubs-for-vectored-continue-handler.patch +++ b/patches/ntdll-Vectored_Continue_Handler/0001-ntdll-Add-stubs-for-vectored-continue-handler.patch @@ -1,4 +1,4 @@ -From ac879ee5145cd109de35035d0d5a147de4479eba Mon Sep 17 00:00:00 2001 +From 17db3489b11f75799b68551796038482110b2bf9 Mon Sep 17 00:00:00 2001 From: Austin English Date: Sat, 8 Nov 2014 07:14:26 +0100 Subject: ntdll: Add stubs for vectored continue handler. @@ -30,7 +30,7 @@ index 2b01df1..c072780 100644 @ stdcall ReplaceFile(wstr wstr wstr long ptr ptr) ReplaceFileW @ stdcall ReplaceFileA(str str str long ptr ptr) diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c -index 31d5edd..25770ef 100644 +index 31d5edd..37edc77 100644 --- a/dlls/ntdll/exception.c +++ b/dlls/ntdll/exception.c @@ -224,6 +224,26 @@ void WINAPI RtlRaiseStatus( NTSTATUS status ) @@ -49,10 +49,10 @@ index 31d5edd..25770ef 100644 +/******************************************************************* + * RtlRemoveVectoredContinueHandler (NTDLL.@) + */ -+PVOID WINAPI RtlRemoveVectoredContinueHandler( PVOID handler ) ++ULONG WINAPI RtlRemoveVectoredContinueHandler( PVOID handler ) +{ + FIXME("%p stub\n", handler); -+ return NULL; ++ return FALSE; +} + +