William Panlener : ntdll: Use success return values for stubs.

Alexandre Julliard julliard at winehq.org
Thu Feb 16 13:10:45 CST 2012


Module: wine
Branch: master
Commit: f6dae487aaa9cdcdf5dba944e2c6a329afb49a31
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f6dae487aaa9cdcdf5dba944e2c6a329afb49a31

Author: William Panlener <wpanlener at gmail.com>
Date:   Wed Feb 15 20:52:23 2012 -0600

ntdll: Use success return values for stubs.

---

 dlls/ntdll/signal_x86_64.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ntdll/signal_x86_64.c b/dlls/ntdll/signal_x86_64.c
index 0fc53c7..baa22d3 100644
--- a/dlls/ntdll/signal_x86_64.c
+++ b/dlls/ntdll/signal_x86_64.c
@@ -2511,7 +2511,7 @@ void signal_init_process(void)
 BOOLEAN CDECL RtlAddFunctionTable( RUNTIME_FUNCTION *table, DWORD count, DWORD64 addr )
 {
     FIXME( "%p %u %lx: stub\n", table, count, addr );
-    return FALSE;
+    return TRUE;
 }
 
 
@@ -2521,7 +2521,7 @@ BOOLEAN CDECL RtlAddFunctionTable( RUNTIME_FUNCTION *table, DWORD count, DWORD64
 BOOLEAN CDECL RtlDeleteFunctionTable( RUNTIME_FUNCTION *table )
 {
     FIXME( "%p: stub\n", table );
-    return FALSE;
+    return TRUE;
 }
 
 




More information about the wine-cvs mailing list