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
b8a50dae
Commit
b8a50dae
authored
Apr 25, 2007
by
Huw Davies
Committed by
Alexandre Julliard
Apr 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Don't try to free the typeinfo if get_funcdesc fails.
parent
74bd17e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
tmarshal.c
dlls/oleaut32/tmarshal.c
+1
-2
No files found.
dlls/oleaut32/tmarshal.c
View file @
b8a50dae
...
...
@@ -1289,7 +1289,6 @@ xCall(LPVOID retptr, int method, TMProxyImpl *tpinfo /*, args */)
hres
=
_get_funcdesc
(
tpinfo
->
tinfo
,
method
,
&
tinfo
,
&
fdesc
,
&
iname
,
&
fname
);
if
(
hres
)
{
ERR
(
"Did not find typeinfo/funcdesc entry for method %d!
\n
"
,
method
);
ITypeInfo_Release
(
tinfo
);
LeaveCriticalSection
(
&
tpinfo
->
crit
);
return
E_FAIL
;
}
...
...
@@ -1702,11 +1701,11 @@ PSFacBuf_CreateProxy(
int
nrofargs
;
ITypeInfo
*
tinfo2
;
hres
=
_get_funcdesc
(
tinfo
,
i
,
&
tinfo2
,
&
fdesc
,
NULL
,
NULL
);
ITypeInfo_Release
(
tinfo2
);
if
(
hres
)
{
ERR
(
"GetFuncDesc %x should not fail here.
\n
"
,
hres
);
return
hres
;
}
ITypeInfo_Release
(
tinfo2
);
/* some args take more than 4 byte on the stack */
nrofargs
=
0
;
for
(
j
=
0
;
j
<
fdesc
->
cParams
;
j
++
)
...
...
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