kernel32: Fix return value of FlsFree.

This commit is contained in:
André Hentschel 2010-03-22 15:43:20 +01:00 committed by Alexandre Julliard
parent 3f02dee355
commit e9be1b4094
1 changed files with 1 additions and 1 deletions

View File

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