Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7311a9fc
Commit
7311a9fc
authored
Jul 21, 2014
by
David Hedberg
Committed by
Alexandre Julliard
Jul 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Populate psia_results before making any callbacks.
parent
062f92a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
itemdlg.c
dlls/comdlg32/itemdlg.c
+3
-5
No files found.
dlls/comdlg32/itemdlg.c
View file @
7311a9fc
...
...
@@ -536,9 +536,6 @@ static HRESULT on_default_action(FileDialogImpl *This)
break
;
case
ONOPEN_OPEN
:
if
(
events_OnFileOk
(
This
)
!=
S_OK
)
break
;
hr
=
SHGetDesktopFolder
(
&
psf_desktop
);
if
(
SUCCEEDED
(
hr
))
{
...
...
@@ -547,10 +544,11 @@ static HRESULT on_default_action(FileDialogImpl *This)
hr
=
SHCreateShellItemArray
(
NULL
,
psf_desktop
,
file_count
,
(
PCUITEMID_CHILD_ARRAY
)
pidla
,
&
This
->
psia_results
);
if
(
SUCCEEDED
(
hr
))
ret
=
S_OK
;
IShellFolder_Release
(
psf_desktop
);
if
(
SUCCEEDED
(
hr
)
&&
events_OnFileOk
(
This
)
==
S_OK
)
ret
=
S_OK
;
}
break
;
...
...
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