kernel32: Fix return value of FlsFree.
This commit is contained in:
parent
3f02dee355
commit
e9be1b4094
|
@ -271,7 +271,7 @@ BOOL WINAPI FlsFree( DWORD index )
|
||||||
}
|
}
|
||||||
else SetLastError( ERROR_INVALID_PARAMETER );
|
else SetLastError( ERROR_INVALID_PARAMETER );
|
||||||
RtlReleasePebLock();
|
RtlReleasePebLock();
|
||||||
return TRUE;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
|
|
Loading…
Reference in New Issue