wininet: Don't ask for confirmation while deleting cache directory.

This commit is contained in:
Piotr Caban 2012-09-26 11:37:41 +02:00 committed by Alexandre Julliard
parent 5f6d133f11
commit d2e5bb30eb
1 changed files with 1 additions and 1 deletions

View File

@ -1657,7 +1657,7 @@ static BOOL URLCache_DeleteCacheDirectory(LPCWSTR lpszPath)
shfos.wFunc = FO_DELETE;
shfos.pFrom = path;
shfos.pTo = NULL;
shfos.fFlags = 0;
shfos.fFlags = FOF_NOCONFIRMATION;
shfos.fAnyOperationsAborted = FALSE;
ret = SHFileOperationW(&shfos);
if (ret)