Let CoSetState() accept state == NULL.

This commit is contained in:
Andreas Mohr 1999-04-24 11:57:30 +00:00 committed by Alexandre Julliard
parent dcb8273a23
commit 5c385be532
1 changed files with 1 additions and 1 deletions

View File

@ -1763,7 +1763,7 @@ HRESULT WINAPI CoGetState16(LPDWORD state)
HRESULT WINAPI CoSetState(LPDWORD state)
{
FIXME(ole, "(%p),stub!\n", state);
*state = 0;
if (state) *state = 0;
return S_OK;
}