Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
18514ca5
Commit
18514ca5
authored
Oct 06, 2004
by
Rolf Kalbermatter
Committed by
Alexandre Julliard
Oct 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug found by Piotr Caban, where our function tried to delete a
directory eventhough the user canceled the operation.
parent
b0c45123
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
shlfileop.c
dlls/shell32/shlfileop.c
+3
-3
No files found.
dlls/shell32/shlfileop.c
View file @
18514ca5
...
...
@@ -52,7 +52,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
#define FO_MASK 0xF
CHAR
aWildcardFile
[]
=
{
'*'
,
'.'
,
'*'
,
0
};
static
const
CHAR
aWildcardFile
[]
=
{
'*'
,
'.'
,
'*'
,
0
};
static
const
WCHAR
wWildcardFile
[]
=
{
'*'
,
'.'
,
'*'
,
0
};
static
const
WCHAR
wWildcardChars
[]
=
{
'*'
,
'?'
,
0
};
static
const
WCHAR
wBackslash
[]
=
{
'\\'
,
0
};
...
...
@@ -148,7 +148,7 @@ BOOL SHELL_DeleteDirectoryA(LPCSTR pszDir, BOOL bShowUI)
if
(
hFind
==
INVALID_HANDLE_VALUE
)
return
FALSE
;
if
(
!
bShowUI
||
SHELL_ConfirmDialog
(
ASK_DELETE_FOLDER
,
pszDir
))
if
(
!
bShowUI
||
(
ret
=
SHELL_ConfirmDialog
(
ASK_DELETE_FOLDER
,
pszDir
)
))
{
do
{
...
...
@@ -183,7 +183,7 @@ BOOL SHELL_DeleteDirectoryW(LPCWSTR pszDir, BOOL bShowUI)
if
(
hFind
==
INVALID_HANDLE_VALUE
)
return
FALSE
;
if
(
!
bShowUI
||
SHELL_ConfirmDialogW
(
ASK_DELETE_FOLDER
,
pszDir
))
if
(
!
bShowUI
||
(
ret
=
SHELL_ConfirmDialogW
(
ASK_DELETE_FOLDER
,
pszDir
)
))
{
do
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment