Skip to content
Snippets Groups Projects
Commit 0498534b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

ole32: Remove useless parameter check.

parent c090624f
No related branches found
Tags wine-960606
No related merge requests found
......@@ -181,7 +181,9 @@ static HRESULT WINAPI IPropertyStorage_fnQueryInterface(
{
PropertyStorage_impl *This = (PropertyStorage_impl *)iface;
if ( (This==0) || (ppvObject==0) )
TRACE("(%p, %s, %p)\n", This, debugstr_guid(riid), ppvObject);
if (!ppvObject)
return E_INVALIDARG;
*ppvObject = 0;
......
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