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
6ecca8cf
Commit
6ecca8cf
authored
Jun 09, 2023
by
Etaash Mathamsetty
Committed by
Alexandre Julliard
Jun 12, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Allow RtlAllocateHeap to crash with invalid handle.
parent
68a3b007
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
heap.c
dlls/ntdll/heap.c
+2
-3
No files found.
dlls/ntdll/heap.c
View file @
6ecca8cf
...
...
@@ -2052,9 +2052,8 @@ void *WINAPI DECLSPEC_HOTPATCH RtlAllocateHeap( HANDLE handle, ULONG flags, SIZE
ULONG
heap_flags
;
NTSTATUS
status
;
if
(
!
(
heap
=
unsafe_heap_from_handle
(
handle
,
flags
,
&
heap_flags
)))
status
=
STATUS_INVALID_HANDLE
;
else
if
((
block_size
=
heap_get_block_size
(
heap
,
heap_flags
,
size
))
==
~
0U
)
heap
=
unsafe_heap_from_handle
(
handle
,
flags
,
&
heap_flags
);
if
((
block_size
=
heap_get_block_size
(
heap
,
heap_flags
,
size
))
==
~
0U
)
status
=
STATUS_NO_MEMORY
;
else
if
(
block_size
>=
HEAP_MIN_LARGE_BLOCK_SIZE
)
status
=
heap_allocate_large
(
heap
,
heap_flags
,
block_size
,
size
,
&
ptr
);
...
...
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