mirror of
https://github.com/reactos/wine.git
synced 2025-03-01 09:16:00 +00:00
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…
x
Reference in New Issue
Block a user