Module: wine Branch: master Commit: 7ce77b464c6620f60bda6332cbb87be608d04264 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7ce77b464c6620f60bda6332cb...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Wed Sep 20 13:45:37 2017 +0100
ole32: Add a trace to IDataObject::GetData.
Signed-off-by: Dmitry Timoshkov dmitry@baikal.ru Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ole32/datacache.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/ole32/datacache.c b/dlls/ole32/datacache.c index ecae89d..a95d0fb 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);