kernel32: improve GetNumaHighestNodeNumber (try 2)

Austin English austinenglish at gmail.com
Tue Mar 18 12:47:09 CDT 2014


try 2: leave the FIXME

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/20140318/1ed808cc/attachment.html>
-------------- next part --------------
diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c
index 60156aa..3ff47e1 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;
+    FIXME("(%p): semi-stub\n", highestnode);
+    return TRUE;
 }
 
 /**********************************************************************


More information about the wine-patches mailing list