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
ddb71365
Commit
ddb71365
authored
Nov 27, 2018
by
Ralf Habacker
Committed by
Alexandre Julliard
Nov 29, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorer: Fix atom leaks caused by not releasing DDE interface.
Signed-off-by:
Ralf Habacker
<
ralf.habacker@freenet.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
14984a16
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
desktop.c
programs/explorer/desktop.c
+3
-1
No files found.
programs/explorer/desktop.c
View file @
ddb71365
...
...
@@ -921,6 +921,7 @@ void manage_desktop( WCHAR *arg )
WCHAR
*
p
=
arg
;
const
WCHAR
*
name
=
NULL
;
BOOL
enable_shell
=
FALSE
;
void
(
WINAPI
*
pShellDDEInit
)(
BOOL
)
=
NULL
;
/* get the rest of the command line (if any) */
while
(
*
p
&&
!
is_whitespace
(
*
p
))
p
++
;
...
...
@@ -993,7 +994,6 @@ void manage_desktop( WCHAR *arg )
if
(
graphics_driver
)
{
HMODULE
shell32
;
void
(
WINAPI
*
pShellDDEInit
)(
BOOL
);
if
(
using_root
)
enable_shell
=
FALSE
;
...
...
@@ -1035,6 +1035,8 @@ void manage_desktop( WCHAR *arg )
WINE_TRACE
(
"desktop message loop exiting for hwnd %p
\n
"
,
hwnd
);
}
if
(
pShellDDEInit
)
pShellDDEInit
(
FALSE
);
ExitProcess
(
0
);
}
...
...
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