From 7ce77b464c6620f60bda6332cbb87be608d04264 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 20 Sep 2017 13:45:37 +0100 Subject: [PATCH] ole32: Add a trace to IDataObject::GetData. Signed-off-by: Dmitry Timoshkov Signed-off-by: Huw Davies Signed-off-by: Alexandre Julliard --- dlls/ole32/datacache.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/ole32/datacache.c b/dlls/ole32/datacache.c index ecae89d284f..a95d0fbc0b0 100644 --- a/dlls/ole32/datacache.c +++ b/dlls/ole32/datacache.c @@ -1245,6 +1245,8 @@ static HRESULT WINAPI DataCache_GetData( DataCache *This = impl_from_IDataObject(iface); DataCacheEntry *cache_entry; + TRACE("(%p, %s, %p)\n", iface, debugstr_formatetc(pformatetcIn), pmedium); + memset(pmedium, 0, sizeof(*pmedium)); cache_entry = DataCache_GetEntryForFormatEtc(This, pformatetcIn);