Commit 528ad9eb authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

ole32: Fixed datacache object so that we can retrieve meaningful information.

parent bce64150
...@@ -831,7 +831,7 @@ static HRESULT DataCacheEntry_GetData(DataCacheEntry *This, ...@@ -831,7 +831,7 @@ static HRESULT DataCacheEntry_GetData(DataCacheEntry *This,
if (FAILED(hr)) if (FAILED(hr))
return hr; return hr;
} }
if (stgmedium->tymed == TYMED_NULL) if (This->stgmedium.tymed == TYMED_NULL)
return OLE_E_BLANK; return OLE_E_BLANK;
return copy_stg_medium(This->data_cf, stgmedium, &This->stgmedium); return copy_stg_medium(This->data_cf, stgmedium, &This->stgmedium);
} }
......
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