msi: Print a message if we fail to delete a file.
This commit is contained in:
parent
4696417941
commit
6914c4749e
|
@ -405,7 +405,8 @@ static void remove_tracked_tempfiles(MSIPACKAGE* package)
|
|||
|
||||
list_remove( &temp->entry );
|
||||
TRACE("deleting temp file %s\n", debugstr_w( temp->Path ));
|
||||
DeleteFileW( temp->Path );
|
||||
if (!DeleteFileW( temp->Path ))
|
||||
ERR("failed to delete %s\n", debugstr_w( temp->Path ));
|
||||
msi_free( temp->File );
|
||||
msi_free( temp->Path );
|
||||
msi_free( temp );
|
||||
|
|
Loading…
Reference in New Issue