Commit 5c385be5 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Let CoSetState() accept state == NULL.

parent dcb8273a
......@@ -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;
}
......
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