Commit 8d7bfca9 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

ole32: Fix a typo in IEnumSTATSTGImpl_QueryInterface where IStorage was being…

ole32: Fix a typo in IEnumSTATSTGImpl_QueryInterface where IStorage was being compared against instead of IEnumSTATSTG.
parent 8f513e35
......@@ -3716,7 +3716,7 @@ static HRESULT WINAPI IEnumSTATSTGImpl_QueryInterface(
* Compare the riid with the interface IDs implemented by this object.
*/
if (IsEqualGUID(&IID_IUnknown, riid) ||
IsEqualGUID(&IID_IStorage, riid))
IsEqualGUID(&IID_IEnumSTATSTG, riid))
{
*ppvObject = (IEnumSTATSTG*)This;
IEnumSTATSTG_AddRef((IEnumSTATSTG*)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