[PATCH] ntdll: Fix implicit declaration of mach_port_deallocate.
Signed-off-by: Gijs Vermeulen <gijsvrm(a)codeweavers.com> --- dlls/ntdll/nt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c index 589fb68d7a..cdc893b6a2 100644 --- a/dlls/ntdll/nt.c +++ b/dlls/ntdll/nt.c @@ -79,6 +79,7 @@ #include "ddk/wdm.h" #ifdef __APPLE__ +#include <mach/mach.h> #include <mach/mach_init.h> #include <mach/mach_host.h> #include <mach/vm_map.h> -- 2.24.0
Signed-off-by: Gijs Vermeulen <gijsvrm(a)codeweavers.com> --- dlls/kernel32/locale.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/dlls/kernel32/locale.c b/dlls/kernel32/locale.c index a5ec6593b0..1986f31128 100644 --- a/dlls/kernel32/locale.c +++ b/dlls/kernel32/locale.c @@ -176,17 +176,6 @@ static CRITICAL_SECTION_DEBUG critsect_debug = }; static CRITICAL_SECTION cache_section = { &critsect_debug, -1, 0, 0, 0, 0 }; -/* Copy Ascii string to Unicode without using codepages */ -static inline void strcpynAtoW( WCHAR *dst, const char *src, size_t n ) -{ - while (n > 1 && *src) - { - *dst++ = (unsigned char)*src++; - n--; - } - if (n) *dst = 0; -} - extern const unsigned short wctype_table[] DECLSPEC_HIDDEN; extern const unsigned short nameprep_char_type[] DECLSPEC_HIDDEN; extern const WCHAR nameprep_mapping[] DECLSPEC_HIDDEN; -- 2.24.0
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=60969 Your paranoid android. === debian10 (64 bit WoW report) === kernel32: comm.c:918: Test failed: OutQueue should not be empty
participants (2)
-
Gijs Vermeulen -
Marvin