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
36fd85f4
Commit
36fd85f4
authored
May 30, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
May 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: RPC_FC_BIND_PRIMITIVE is a base type so reverse an if statement
that caused string_of_type to fail and the RPC_FC_BIND_PRIMITIVE code not to be executed.
parent
f198dcf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
typegen.c
tools/widl/typegen.c
+4
-4
No files found.
tools/widl/typegen.c
View file @
36fd85f4
...
...
@@ -337,14 +337,14 @@ static size_t write_procformatstring_var(FILE *file, int indent,
else
print_file
(
file
,
indent
,
"0x4e, /* FC_IN_PARAM_BASETYPE */
\n
"
);
if
(
is_base_type
(
type
->
type
)
)
if
(
type
->
type
==
RPC_FC_BIND_PRIMITIVE
)
{
print_file
(
file
,
indent
,
"0x%02x, /*
%s */
\n
"
,
type
->
type
,
string_of_type
(
type
->
type
)
);
print_file
(
file
,
indent
,
"0x%02x, /*
FC_IGNORE */
\n
"
,
RPC_FC_IGNORE
);
size
=
2
;
/* includes param type prefix */
}
else
if
(
type
->
type
==
RPC_FC_BIND_PRIMITIVE
)
else
if
(
is_base_type
(
type
->
type
)
)
{
print_file
(
file
,
indent
,
"0x%02x, /*
FC_IGNORE */
\n
"
,
RPC_FC_IGNORE
);
print_file
(
file
,
indent
,
"0x%02x, /*
%s */
\n
"
,
type
->
type
,
string_of_type
(
type
->
type
)
);
size
=
2
;
/* includes param type prefix */
}
else
...
...
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