kernel32: improve GetNumaHighestNodeNumber

Austin English austinenglish at gmail.com
Mon Mar 17 05:56:23 CDT 2014


Fixes https://bugs.winehq.org/show_bug.cgi?id=35596

--
-Austin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20140317/41b65054/attachment.html>
-------------- next part --------------
diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c
index 60156aa..86055d3 100644
--- a/dlls/kernel32/process.c
+++ b/dlls/kernel32/process.c
@@ -3911,9 +3911,9 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK
  */
 BOOL WINAPI GetNumaHighestNodeNumber(PULONG highestnode)
 {
-    FIXME("(%p): stub\n", highestnode);
-    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
-    return FALSE;
+    *highestnode = 0;
+    WARN("(%p): semi-stub\n", highestnode);
+    return TRUE;
 }
 
 /**********************************************************************


More information about the wine-patches mailing list