mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
Let CoSetState() accept state == NULL.
This commit is contained in:
parent
dcb8273a23
commit
5c385be532
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue