Module: wine Branch: master Commit: 8d2af8e3f3b8bae70f0e5bc35819e4f33bfcb41f URL: http://source.winehq.org/git/wine.git/?a=commit;h=8d2af8e3f3b8bae70f0e5bc358...
Author: Rob Shearman rob@codeweavers.com Date: Fri Feb 29 11:12:10 2008 +0000
kernel32: Fix typo in UTUnRegister.
---
dlls/kernel32/utthunk.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/utthunk.c b/dlls/kernel32/utthunk.c index 55ff733..a1889fa 100644 --- a/dlls/kernel32/utthunk.c +++ b/dlls/kernel32/utthunk.c @@ -304,7 +304,7 @@ VOID WINAPI UTUnRegister( HMODULE hModule )
RtlAcquirePebLock(); ut = UTFind( hModule ); - if ( !ut ) + if ( ut ) { hModule16 = ut->hModule16; UTFree( ut );