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
903488b3
Commit
903488b3
authored
Jun 15, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Make the DOS area accessible even when not using it to hide bugs in broken apps.
parent
16436973
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
virtual.c
dlls/ntdll/virtual.c
+4
-0
No files found.
dlls/ntdll/virtual.c
View file @
903488b3
...
...
@@ -1355,6 +1355,10 @@ void virtual_init(void)
virtual_heap
=
RtlCreateHeap
(
HEAP_NO_SERIALIZE
,
heap_base
,
VIRTUAL_HEAP_SIZE
,
VIRTUAL_HEAP_SIZE
,
NULL
,
NULL
);
create_view
(
&
heap_view
,
heap_base
,
VIRTUAL_HEAP_SIZE
,
VPROT_COMMITTED
|
VPROT_READ
|
VPROT_WRITE
);
/* make the DOS area accessible to hide bugs in broken apps like Excel 2003 */
if
(
wine_mmap_is_in_reserved_area
(
(
void
*
)
0x10000
,
0x100000
)
==
1
)
wine_anon_mmap
(
(
void
*
)
0x10000
,
0x100000
,
PROT_READ
|
PROT_WRITE
,
MAP_FIXED
);
}
...
...
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