Changeset 108343 in vbox
- Timestamp:
- Feb 24, 2025 10:38:41 AM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167702
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_typelib.c
r108342 r108343 1051 1051 { 1052 1052 XPTParamDescriptor *pd = &meth->params[num_args++]; 1053 intrc = fill_pd_from_param(pThis, pd, pIt);1053 rc = fill_pd_from_param(pThis, pd, pIt); 1054 1054 if (RT_FAILURE(rc)) 1055 1055 return rc; … … 1071 1071 #endif 1072 1072 1073 intrc = fill_pd_as_nsresult(meth->result);1073 rc = fill_pd_as_nsresult(meth->result); 1074 1074 if (RT_FAILURE(rc)) 1075 1075 return rc; … … 1080 1080 fprintf(stderr, "%s is notxpcom\n", pNd->u.Method.pszName); 1081 1081 #endif 1082 intrc = fill_pd_from_type(pThis, meth->result, XPT_PD_RETVAL,1083 1082 rc = fill_pd_from_type(pThis, meth->result, XPT_PD_RETVAL, 1083 pNd->u.Method.pNdTypeSpecRet); 1084 1084 if (RT_FAILURE(rc)) 1085 1085 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.