Skip to content
Snippets Groups Projects
Commit 5c385be5 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard
Browse files

Let CoSetState() accept state == NULL.

parent dcb8273a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment