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
8ac05cf4
Commit
8ac05cf4
authored
Feb 14, 2014
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32/tests: Fix test failures under Windows 2000 and some XP versions.
parent
1918d722
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
security.c
dlls/advapi32/tests/security.c
+9
-0
No files found.
dlls/advapi32/tests/security.c
View file @
8ac05cf4
...
...
@@ -4978,6 +4978,7 @@ static void test_filemap_security(void)
{
if
(
!
mapping
)
{
/* NT4 and win2k don't support EXEC on file mappings */
if
(
prot_map
[
i
].
prot
==
PAGE_EXECUTE_READ
||
prot_map
[
i
].
prot
==
PAGE_EXECUTE_READWRITE
||
prot_map
[
i
].
prot
==
PAGE_EXECUTE_WRITECOPY
)
{
win_skip
(
"CreateFileMapping doesn't support PAGE_EXECUTE protection
\n
"
);
...
...
@@ -5001,6 +5002,14 @@ static void test_filemap_security(void)
SetLastError
(
0xdeadbeef
);
mapping
=
CreateFileMappingW
(
file
,
NULL
,
PAGE_EXECUTE_READWRITE
,
0
,
4096
,
NULL
);
if
(
!
mapping
)
{
/* NT4 and win2k don't support EXEC on file mappings */
win_skip
(
"CreateFileMapping doesn't support PAGE_EXECUTE protection
\n
"
);
CloseHandle
(
file
);
DeleteFileA
(
file_name
);
return
;
}
ok
(
mapping
!=
0
,
"CreateFileMapping error %d
\n
"
,
GetLastError
());
access
=
get_obj_access
(
mapping
);
...
...
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