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
9c8bbcd1
Commit
9c8bbcd1
authored
Apr 06, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix a memory leak.
parent
444b781f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
queue.c
server/queue.c
+2
-2
No files found.
server/queue.c
View file @
9c8bbcd1
...
...
@@ -1339,12 +1339,12 @@ static void queue_hardware_message( struct desktop *desktop, struct message *msg
if
(
!
win
||
!
(
thread
=
get_window_thread
(
win
)))
{
if
(
input
)
update_input_key_state
(
input
->
desktop
,
input
->
keystate
,
msg
);
free
(
msg
);
free
_message
(
msg
);
return
;
}
input
=
thread
->
queue
->
input
;
if
(
msg
->
msg
==
WM_MOUSEMOVE
&&
merge_message
(
input
,
msg
))
free
(
msg
);
if
(
msg
->
msg
==
WM_MOUSEMOVE
&&
merge_message
(
input
,
msg
))
free
_message
(
msg
);
else
{
msg
->
unique_id
=
0
;
/* will be set once we return it to the app */
...
...
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