Commit bdda3b95 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Warn if a transform file cannot be opened.

parent 2b0c4567
......@@ -733,7 +733,10 @@ UINT MSI_DatabaseApplyTransformW( MSIDATABASE *db,
r = StgOpenStorage( szTransformFile, NULL,
STGM_DIRECT|STGM_READ|STGM_SHARE_DENY_WRITE, NULL, 0, &stg);
if ( FAILED(r) )
{
WARN("failed to open transform 0x%08x\n", r);
return ret;
}
r = IStorage_Stat( stg, &stat, STATFLAG_NONAME );
if ( FAILED( r ) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment