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
630c43ab
Commit
630c43ab
authored
Mar 08, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Don't crash on IE5.
parent
2266219c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
ordinal.c
dlls/shlwapi/tests/ordinal.c
+8
-1
No files found.
dlls/shlwapi/tests/ordinal.c
View file @
630c43ab
...
...
@@ -380,7 +380,9 @@ static void test_GetShellSecurityDescriptor(void)
}
psd
=
pGetShellSecurityDescriptor
(
NULL
,
2
);
ok
(
psd
==
NULL
,
"GetShellSecurityDescriptor should fail
\n
"
);
ok
(
psd
==
NULL
||
broken
(
psd
==
INVALID_HANDLE_VALUE
),
/* IE5 */
"GetShellSecurityDescriptor should fail
\n
"
);
psd
=
pGetShellSecurityDescriptor
(
rgsup
,
0
);
ok
(
psd
==
NULL
,
"GetShellSecurityDescriptor should fail
\n
"
);
...
...
@@ -392,6 +394,11 @@ static void test_GetShellSecurityDescriptor(void)
win_skip
(
"GetShellSecurityDescriptor is not implemented
\n
"
);
return
;
}
if
(
psd
==
INVALID_HANDLE_VALUE
)
{
win_skip
(
"GetShellSecurityDescriptor is broken on IE5
\n
"
);
return
;
}
ok
(
psd
!=
NULL
,
"GetShellSecurityDescriptor failed
\n
"
);
if
(
psd
!=
NULL
)
{
...
...
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