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
d92d9bc2
Commit
d92d9bc2
authored
Sep 29, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Don't free reserved memory on 64-bit macOS.
It's part of the zerofill section. Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=55674
parent
4e559454
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
virtual.c
dlls/ntdll/unix/virtual.c
+13
-8
No files found.
dlls/ntdll/unix/virtual.c
View file @
d92d9bc2
...
...
@@ -4161,15 +4161,20 @@ static void virtual_release_address_space(void)
*/
void
virtual_set_large_address_space
(
void
)
{
#ifdef _WIN64
if
(
is_wow64
())
user_space_wow_limit
=
((
main_image_info
.
ImageCharacteristics
&
IMAGE_FILE_LARGE_ADDRESS_AWARE
)
?
limit_4g
:
limit_2g
)
-
1
;
else
free_reserved_memory
(
0
,
(
char
*
)
0x7ffe0000
);
#else
if
(
!
(
main_image_info
.
ImageCharacteristics
&
IMAGE_FILE_LARGE_ADDRESS_AWARE
))
return
;
free_reserved_memory
(
(
char
*
)
0x80000000
,
address_space_limit
);
if
(
is_win64
)
{
if
(
is_wow64
())
user_space_wow_limit
=
((
main_image_info
.
ImageCharacteristics
&
IMAGE_FILE_LARGE_ADDRESS_AWARE
)
?
limit_4g
:
limit_2g
)
-
1
;
#ifndef __APPLE__
/* don't free the zerofill section on macOS */
else
free_reserved_memory
(
0
,
(
char
*
)
0x7ffe0000
);
#endif
}
else
{
if
(
!
(
main_image_info
.
ImageCharacteristics
&
IMAGE_FILE_LARGE_ADDRESS_AWARE
))
return
;
free_reserved_memory
(
(
char
*
)
0x80000000
,
address_space_limit
);
}
user_space_limit
=
working_set_limit
=
address_space_limit
;
}
...
...
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