kernel32: Fix return value of FlsFree.
authorAndré Hentschel <nerv@dawncrow.de>
Mon, 22 Mar 2010 14:43:20 +0000 (15:43 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 22 Mar 2010 14:53:42 +0000 (15:53 +0100)
dlls/kernel32/fiber.c

index f6bebf8b34b8966f4bdadec96b60c26385d908db..ca4c8f99b26b2032242747df769ad36cc3205f40 100644 (file)
@@ -271,7 +271,7 @@ BOOL WINAPI FlsFree( DWORD index )
     }
     else SetLastError( ERROR_INVALID_PARAMETER );
     RtlReleasePebLock();
-    return TRUE;
+    return ret;
 }
 
 /***********************************************************************