mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 14:24:45 +00:00
msxml3: Try IStream if IPersistStream save failed.
This commit is contained in:
parent
cb2d40275b
commit
012806a077
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue