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
d00ff2ed
Commit
d00ff2ed
authored
Oct 05, 2007
by
Dan Hipschman
Committed by
Alexandre Julliard
Oct 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Make structs containing user types bogus; fix square_test_us test failure.
parent
e0b20981
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
server.c
dlls/rpcrt4/tests/server.c
+1
-1
parser.y
tools/widl/parser.y
+3
-0
No files found.
dlls/rpcrt4/tests/server.c
View file @
d00ff2ed
...
...
@@ -698,7 +698,7 @@ pointer_tests(void)
ok
(
test_list_length
(
list
)
==
3
,
"RPC test_list_length
\n
"
);
ok
(
square_puint
(
p1
)
==
121
,
"RPC square_puint
\n
"
);
todo_wine
ok
(
square_test_us
(
&
tus
)
==
121
,
"RPC square_test_us
\n
"
);
ok
(
square_test_us
(
&
tus
)
==
121
,
"RPC square_test_us
\n
"
);
pa
[
0
]
=
&
a
[
0
];
pa
[
1
]
=
&
a
[
1
];
...
...
tools/widl/parser.y
View file @
d00ff2ed
...
...
@@ -1740,6 +1740,9 @@ static int get_struct_type(var_list_t *fields)
{
type_t *t = field->type;
if (is_user_type(t))
return RPC_FC_BOGUS_STRUCT;
if (is_ptr(t))
{
do
...
...
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