ole32: Print a FIXME when the "CONTENTS" stream refers to unsupported format.

Dmitry Timoshkov dmitry at baikal.ru
Thu Oct 22 05:08:37 CDT 2015


Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 dlls/ole32/datacache.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/ole32/datacache.c b/dlls/ole32/datacache.c
index 8bb4ed8..240e742 100644
--- a/dlls/ole32/datacache.c
+++ b/dlls/ole32/datacache.c
@@ -1333,7 +1333,10 @@ static HRESULT parse_contents_stream( DataCache *This, IStorage *stg, IStream *s
     if (IsEqualCLSID( &stat.clsid, &CLSID_Picture_Dib ))
         fmt = &static_dib_fmt;
     else
+    {
+        FIXME("unsupported format %s\n", debugstr_guid( &stat.clsid ));
         return E_FAIL;
+    }
 
     return add_cache_entry( This, fmt, stm, contents_stream );
 }
-- 
2.6.2




More information about the wine-patches mailing list