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
693dd476
Commit
693dd476
authored
Feb 12, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Feb 12, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rcprt4/tests: Don't crash on NT4 or lower.
parent
ed0f34c6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
ndr_marshall.c
dlls/rpcrt4/tests/ndr_marshall.c
+6
-0
No files found.
dlls/rpcrt4/tests/ndr_marshall.c
View file @
693dd476
...
...
@@ -1969,6 +1969,11 @@ static void test_conf_complex_array(void)
&
fmtstr_complex_array
[
32
]
);
expected_length
=
(
4
+
memsrc
.
dim1
*
(
2
+
memsrc
.
dim2
))
*
4
;
if
(
StubMsg
.
BufferLength
==
96
)
{
win_skip
(
"Tests crash on Win9x, WinMe and NT4
\n
"
);
goto
cleanup
;
}
todo_wine
ok
(
StubMsg
.
BufferLength
>=
expected_length
,
"length %d
\n
"
,
StubMsg
.
BufferLength
);
...
...
@@ -2032,6 +2037,7 @@ todo_wine
HeapFree
(
GetProcessHeap
(),
0
,
StubMsg
.
RpcMsg
->
Buffer
);
cleanup:
for
(
i
=
0
;
i
<
memsrc
.
dim1
;
i
++
)
HeapFree
(
GetProcessHeap
(),
0
,
memsrc
.
array
[
i
]);
HeapFree
(
GetProcessHeap
(),
0
,
memsrc
.
array
);
...
...
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