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
a78fd8a0
Commit
a78fd8a0
authored
Sep 07, 2016
by
Sebastian Lackner
Committed by
Alexandre Julliard
Sep 08, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Only call GlobalUnlock when GlobalLock was successful.
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f9d40575
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
clipboard.c
dlls/user32/clipboard.c
+4
-1
No files found.
dlls/user32/clipboard.c
View file @
a78fd8a0
...
...
@@ -89,9 +89,12 @@ static LCID get_clipboard_locale(void)
if
((
data
=
GetClipboardData
(
CF_LOCALE
)))
{
LCID
*
ptr
=
GlobalLock
(
data
);
if
(
ptr
&&
GlobalSize
(
data
)
>=
sizeof
(
*
ptr
))
lcid
=
*
ptr
;
if
(
ptr
)
{
if
(
GlobalSize
(
data
)
>=
sizeof
(
*
ptr
))
lcid
=
*
ptr
;
GlobalUnlock
(
data
);
}
}
return
lcid
;
}
...
...
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