Commit 32d39ea6 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

ole32: IPersistStream is also implemented by any object that implements IStream.

parent d9b7c360
......@@ -122,6 +122,7 @@ static HRESULT WINAPI StgStreamImpl_QueryInterface(
* Compare the riid with the interface IDs implemented by this object.
*/
if (IsEqualGUID(&IID_IUnknown, riid)||
IsEqualGUID(&IID_IPersistStream, riid)||
IsEqualGUID(&IID_IStream, riid))
{
*ppvObject = (IStream*)This;
......
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