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
4f596c04
Commit
4f596c04
authored
Apr 04, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Apr 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Remove unnecessary handler from LocalUnlock.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e358731f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
21 deletions
+14
-21
memory.c
dlls/kernelbase/memory.c
+14
-21
No files found.
dlls/kernelbase/memory.c
View file @
4f596c04
...
...
@@ -918,6 +918,7 @@ HLOCAL WINAPI DECLSPEC_HOTPATCH LocalReAlloc( HLOCAL handle, SIZE_T size, UINT f
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
LocalUnlock
(
HLOCAL
handle
)
{
HANDLE
heap
=
GetProcessHeap
();
struct
mem_entry
*
mem
;
BOOL
ret
=
FALSE
;
...
...
@@ -929,36 +930,28 @@ BOOL WINAPI DECLSPEC_HOTPATCH LocalUnlock( HLOCAL handle )
return
FALSE
;
}
RtlLockHeap
(
GetProcessHeap
()
);
__TRY
RtlLockHeap
(
heap
);
if
((
mem
=
unsafe_mem_from_HLOCAL
(
handle
)))
{
if
(
(
mem
=
unsafe_mem_from_HLOCAL
(
handle
))
)
if
(
mem
->
lock
)
{
if
(
mem
->
lock
)
{
mem
->
lock
--
;
ret
=
(
mem
->
lock
!=
0
);
if
(
!
ret
)
SetLastError
(
NO_ERROR
);
}
else
{
WARN_
(
globalmem
)(
"%p not locked
\n
"
,
handle
);
SetLastError
(
ERROR_NOT_LOCKED
);
}
mem
->
lock
--
;
ret
=
(
mem
->
lock
!=
0
);
if
(
!
ret
)
SetLastError
(
NO_ERROR
);
}
else
{
WARN_
(
globalmem
)(
"
invalid handle %p
\n
"
,
handle
);
SetLastError
(
ERROR_
INVALID_HANDLE
);
WARN_
(
globalmem
)(
"
%p not locked
\n
"
,
handle
);
SetLastError
(
ERROR_
NOT_LOCKED
);
}
}
__EXCEPT_PAGE_FAULT
else
{
WARN_
(
globalmem
)(
"
(%p): Page fault occurred ! Caused by bug ?
\n
"
,
handle
);
SetLastError
(
ERROR_INVALID_
PARAMETER
);
WARN_
(
globalmem
)(
"
invalid handle %p
\n
"
,
handle
);
SetLastError
(
ERROR_INVALID_
HANDLE
);
}
__ENDTRY
RtlUnlockHeap
(
GetProcessHeap
()
);
RtlUnlockHeap
(
heap
);
return
ret
;
}
...
...
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