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
6c093f39
Commit
6c093f39
authored
Jan 26, 2005
by
Mike Hearn
Committed by
Alexandre Julliard
Jan 26, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a typo, propagate errors better from inside the typelib
marshaller.
parent
82977c14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
tmarshal.c
dlls/oleaut32/tmarshal.c
+3
-2
No files found.
dlls/oleaut32/tmarshal.c
View file @
6c093f39
...
@@ -132,7 +132,7 @@ _unmarshal_interface(marshal_state *buf, REFIID riid, LPUNKNOWN *pUnk) {
...
@@ -132,7 +132,7 @@ _unmarshal_interface(marshal_state *buf, REFIID riid, LPUNKNOWN *pUnk) {
if
(
hres
)
{
FIXME
(
"Failed Seek %lx
\n
"
,
hres
);
return
hres
;}
if
(
hres
)
{
FIXME
(
"Failed Seek %lx
\n
"
,
hres
);
return
hres
;}
hres
=
CoUnmarshalInterface
(
pStm
,
riid
,(
LPVOID
*
)
pUnk
);
hres
=
CoUnmarshalInterface
(
pStm
,
riid
,(
LPVOID
*
)
pUnk
);
if
(
hres
)
{
if
(
hres
)
{
FIXME
(
"
M
arshalling interface %s failed with %lx
\n
"
,
debugstr_guid
(
riid
),
hres
);
FIXME
(
"
Unm
arshalling interface %s failed with %lx
\n
"
,
debugstr_guid
(
riid
),
hres
);
return
hres
;
return
hres
;
}
}
IStream_Release
(
pStm
);
IStream_Release
(
pStm
);
...
@@ -1145,7 +1145,7 @@ _get_funcdesc(
...
@@ -1145,7 +1145,7 @@ _get_funcdesc(
ITypeInfo_Release
(
tinfo2
);
ITypeInfo_Release
(
tinfo2
);
if
(
!
hres
)
return
S_OK
;
if
(
!
hres
)
return
S_OK
;
}
}
return
E_FAIL
;
return
hres
;
}
}
if
(((
*
fdesc
)
->
oVft
/
4
)
==
iMethod
)
{
if
(((
*
fdesc
)
->
oVft
/
4
)
==
iMethod
)
{
if
(
fname
)
if
(
fname
)
...
@@ -1374,6 +1374,7 @@ xCall(LPVOID retptr, int method, TMProxyImpl *tpinfo /*, args */)
...
@@ -1374,6 +1374,7 @@ xCall(LPVOID retptr, int method, TMProxyImpl *tpinfo /*, args */)
);
);
if
(
hres
)
{
if
(
hres
)
{
FIXME
(
"Failed to unmarshall param, hres %lx
\n
"
,
hres
);
FIXME
(
"Failed to unmarshall param, hres %lx
\n
"
,
hres
);
status
=
hres
;
break
;
break
;
}
}
xargs
+=
_argsize
(
elem
->
tdesc
.
vt
);
xargs
+=
_argsize
(
elem
->
tdesc
.
vt
);
...
...
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