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

This commit is contained in:
Eric Pouech 2008-01-13 17:03:44 +01:00 committed by Alexandre Julliard
parent bce64150eb
commit 528ad9ebbd
1 changed files with 1 additions and 1 deletions

View File

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