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
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
memory.c
dlls/kernelbase/memory.c
+4
-11
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
...
@@ -918,6 +918,7 @@ HLOCAL WINAPI DECLSPEC_HOTPATCH LocalReAlloc( HLOCAL handle, SIZE_T size, UINT f
*/
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
LocalUnlock
(
HLOCAL
handle
)
BOOL
WINAPI
DECLSPEC_HOTPATCH
LocalUnlock
(
HLOCAL
handle
)
{
{
HANDLE
heap
=
GetProcessHeap
();
struct
mem_entry
*
mem
;
struct
mem_entry
*
mem
;
BOOL
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
...
@@ -929,9 +930,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH LocalUnlock( HLOCAL handle )
...
@@ -929,9 +930,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH LocalUnlock( HLOCAL handle )
return
FALSE
;
return
FALSE
;
}
}
RtlLockHeap
(
GetProcessHeap
()
);
RtlLockHeap
(
heap
);
__TRY
{
if
((
mem
=
unsafe_mem_from_HLOCAL
(
handle
)))
if
((
mem
=
unsafe_mem_from_HLOCAL
(
handle
)))
{
{
if
(
mem
->
lock
)
if
(
mem
->
lock
)
...
@@ -951,14 +950,8 @@ BOOL WINAPI DECLSPEC_HOTPATCH LocalUnlock( HLOCAL handle )
...
@@ -951,14 +950,8 @@ BOOL WINAPI DECLSPEC_HOTPATCH LocalUnlock( HLOCAL handle )
WARN_
(
globalmem
)(
"invalid handle %p
\n
"
,
handle
);
WARN_
(
globalmem
)(
"invalid handle %p
\n
"
,
handle
);
SetLastError
(
ERROR_INVALID_HANDLE
);
SetLastError
(
ERROR_INVALID_HANDLE
);
}
}
}
RtlUnlockHeap
(
heap
);
__EXCEPT_PAGE_FAULT
{
WARN_
(
globalmem
)(
"(%p): Page fault occurred ! Caused by bug ?
\n
"
,
handle
);
SetLastError
(
ERROR_INVALID_PARAMETER
);
}
__ENDTRY
RtlUnlockHeap
(
GetProcessHeap
()
);
return
ret
;
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