Paul Gofman : kernel32: Add DECLSPEC_HOTPATCH to FindClose().

Alexandre Julliard julliard at winehq.org
Wed May 15 14:32:22 CDT 2019


Module: wine
Branch: stable
Commit: ea33e9e51b5dd827e71156f301c4a2ab6270fab1
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ea33e9e51b5dd827e71156f301c4a2ab6270fab1

Author: Paul Gofman <gofmanp at gmail.com>
Date:   Fri Apr  5 11:26:28 2019 +0300

kernel32: Add DECLSPEC_HOTPATCH to FindClose().

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=28140
Signed-off-by: Paul Gofman <gofmanp at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit d62187105e37c0729775ae45d161ba74302ce5a5)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 dlls/kernel32/file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/kernel32/file.c b/dlls/kernel32/file.c
index 3214d72..c66073b 100644
--- a/dlls/kernel32/file.c
+++ b/dlls/kernel32/file.c
@@ -2236,7 +2236,7 @@ BOOL WINAPI FindNextFileW( HANDLE handle, WIN32_FIND_DATAW *data )
 /*************************************************************************
  *           FindClose   (KERNEL32.@)
  */
-BOOL WINAPI FindClose( HANDLE handle )
+BOOL WINAPI DECLSPEC_HOTPATCH FindClose( HANDLE handle )
 {
     FIND_FIRST_INFO *info = handle;
 




More information about the wine-cvs mailing list