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
47bf80da
Commit
47bf80da
authored
Oct 24, 2006
by
Rob Shearman
Committed by
Alexandre Julliard
Oct 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Fix a crash in dump_DispParms when running the typelib test with debug tracing on.
parent
aa203f09
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
typelib.c
dlls/oleaut32/typelib.c
+10
-6
No files found.
dlls/oleaut32/typelib.c
View file @
47bf80da
...
...
@@ -1298,15 +1298,19 @@ static void dump_DispParms(const DISPPARAMS * pdp)
TRACE
(
"args=%u named args=%u
\n
"
,
pdp
->
cArgs
,
pdp
->
cNamedArgs
);
if
(
pdp
->
cNamedArgs
)
if
(
pdp
->
cNamedArgs
&&
pdp
->
rgdispidNamedArgs
)
{
TRACE
(
"named args:
\n
"
);
for
(
index
=
0
;
index
<
pdp
->
cNamedArgs
;
index
++
)
TRACE
(
"
\t
0x%x
\n
"
,
pdp
->
rgdispidNamedArgs
[
index
]
);
for
(
index
=
0
;
index
<
pdp
->
cNamedArgs
;
index
++
)
TRACE
(
"
\t
0x%x
\n
"
,
pdp
->
rgdispidNamedArgs
[
index
]
);
}
if
(
pdp
->
cArgs
)
if
(
pdp
->
cArgs
&&
pdp
->
rgvarg
)
{
TRACE
(
"args:
\n
"
);
for
(
index
=
0
;
index
<
pdp
->
cArgs
;
index
++
)
dump_Variant
(
&
pdp
->
rgvarg
[
index
]
);
for
(
index
=
0
;
index
<
pdp
->
cArgs
;
index
++
)
dump_Variant
(
&
pdp
->
rgvarg
[
index
]
);
}
}
static
void
dump_TypeInfo
(
const
ITypeInfoImpl
*
pty
)
...
...
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