kernel32: only print a fixme once for FlushProcessWriteBuffers

Austin English austinenglish at gmail.com
Wed May 2 17:00:36 CDT 2012


-- 
-Austin
-------------- next part --------------
diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c
index dca8561..0c5c346 100644
--- a/dlls/kernel32/process.c
+++ b/dlls/kernel32/process.c
@@ -3863,5 +3863,8 @@ BOOL WINAPI GetProcessDEPPolicy(HANDLE process, LPDWORD flags, PBOOL permanent)
  */
 VOID WINAPI FlushProcessWriteBuffers(void)
 {
-    FIXME(": stub\n");
+    static int once = 0;
+    
+    if (!once++)
+        FIXME(": stub\n");
 }


More information about the wine-patches mailing list