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

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Dmitry Timoshkov 2015-10-22 18:08:37 +08:00 committed by Alexandre Julliard
parent 496b001ae0
commit 1b580e70e9
1 changed files with 3 additions and 0 deletions

View File

@ -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 );
}