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
c2c65369
Commit
c2c65369
authored
Nov 19, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Nov 22, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Handle LMEM_DISCARDABLE flag specifically in LocalReAlloc.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53474
parent
86d09091
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
heap.c
dlls/kernel32/tests/heap.c
+0
-0
memory.c
dlls/kernelbase/memory.c
+2
-0
No files found.
dlls/kernel32/tests/heap.c
View file @
c2c65369
This diff is collapsed.
Click to expand it.
dlls/kernelbase/memory.c
View file @
c2c65369
...
...
@@ -990,6 +990,7 @@ HLOCAL WINAPI DECLSPEC_HOTPATCH LocalReAlloc( HLOCAL handle, SIZE_T size, UINT f
HeapValidate
(
heap
,
HEAP_NO_SERIALIZE
,
ptr
))
{
if
(
flags
&
LMEM_MODIFY
)
ret
=
handle
;
else
if
(
flags
&
LMEM_DISCARDABLE
)
SetLastError
(
ERROR_INVALID_PARAMETER
);
else
if
(
flags
&
LMEM_MOVEABLE
)
{
ret
=
HeapReAlloc
(
heap
,
heap_flags
,
ptr
,
size
);
...
...
@@ -1005,6 +1006,7 @@ HLOCAL WINAPI DECLSPEC_HOTPATCH LocalReAlloc( HLOCAL handle, SIZE_T size, UINT f
if
(
flags
&
LMEM_DISCARDABLE
)
mem
->
flags
|=
MEM_FLAG_DISCARDABLE
;
ret
=
handle
;
}
else
if
(
flags
&
LMEM_DISCARDABLE
)
SetLastError
(
ERROR_INVALID_PARAMETER
);
else
{
if
(
size
)
...
...
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