msxml3: Try IStream if IPersistStream save failed.

oldstable
Nikolay Sivov 2012-01-23 10:31:55 +03:00 committed by Alexandre Julliard
parent cb2d40275b
commit 012806a077
1 changed files with 2 additions and 1 deletions

View File

@ -2377,9 +2377,10 @@ static HRESULT internal_parse(
if(hr != S_OK)
{
IStream_Release(stream);
break;
stream = NULL;
}
}
if(stream || IUnknown_QueryInterface(V_UNKNOWN(&varInput),
&IID_IStream, (void**)&stream) == S_OK)
{