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
89a60562
Commit
89a60562
authored
Sep 19, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Add window data structure locking to the ReparentNotify event handler.
parent
24c0abfd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
event.c
dlls/winex11.drv/event.c
+9
-2
No files found.
dlls/winex11.drv/event.c
View file @
89a60562
...
...
@@ -938,8 +938,13 @@ static void X11DRV_ReparentNotify( HWND hwnd, XEvent *xev )
HWND
parent
,
old_parent
;
DWORD
style
;
if
(
!
(
data
=
X11DRV_get_win_data
(
hwnd
)))
return
;
if
(
!
data
->
embedded
)
return
;
if
(
!
(
data
=
get_win_data
(
hwnd
)))
return
;
if
(
!
data
->
embedded
)
{
release_win_data
(
data
);
return
;
}
if
(
data
->
whole_window
)
{
...
...
@@ -947,6 +952,7 @@ static void X11DRV_ReparentNotify( HWND hwnd, XEvent *xev )
{
TRACE
(
"%p/%lx reparented to root
\n
"
,
hwnd
,
data
->
whole_window
);
data
->
embedder
=
0
;
release_win_data
(
data
);
SendMessageW
(
hwnd
,
WM_CLOSE
,
0
,
0
);
return
;
}
...
...
@@ -954,6 +960,7 @@ static void X11DRV_ReparentNotify( HWND hwnd, XEvent *xev )
}
TRACE
(
"%p/%lx reparented to %lx
\n
"
,
hwnd
,
data
->
whole_window
,
event
->
parent
);
release_win_data
(
data
);
style
=
GetWindowLongW
(
hwnd
,
GWL_STYLE
);
if
(
event
->
parent
==
root_window
)
...
...
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