Dmitry Timoshkov : ole32: Print a FIXME when the "CONTENTS" stream refers to unsupported format.
Module: wine Branch: master Commit: 1b580e70e990330a409a032c3f0758603e5d1ee7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1b580e70e990330a409a032c3f... Author: Dmitry Timoshkov <dmitry(a)baikal.ru> Date: Thu Oct 22 18:08:37 2015 +0800 ole32: Print a FIXME when the "CONTENTS" stream refers to unsupported format. Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ole32/datacache.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/ole32/datacache.c b/dlls/ole32/datacache.c index 8bb4ed8..caabd10 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 ); }
participants (1)
-
Alexandre Julliard