Commit e9be1b40 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32: Fix return value of FlsFree.

parent 3f02dee3
......@@ -271,7 +271,7 @@ BOOL WINAPI FlsFree( DWORD index )
}
else SetLastError( ERROR_INVALID_PARAMETER );
RtlReleasePebLock();
return TRUE;
return ret;
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment