Changeset 108329 in vbox
- Timestamp:
- Feb 21, 2025 2:23:03 PM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 167681
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_idl.c
r108326 r108329 824 824 825 825 PXPIDLNODE pNdTypeSpec = NULL; 826 intrc = xpidlParseTypeSpec(pThis, pInput, &pNdTypeSpec);826 rc = xpidlParseTypeSpec(pThis, pInput, &pNdTypeSpec); 827 827 if (RT_FAILURE(rc)) 828 828 return rc; … … 854 854 855 855 PXPIDLNODE pNdTypeSpec = NULL; 856 intrc = xpidlParseTypeSpec(pThis, pInput, &pNdTypeSpec);856 rc = xpidlParseTypeSpec(pThis, pInput, &pNdTypeSpec); 857 857 if (RT_FAILURE(rc)) 858 858 return rc; … … 1136 1136 { 1137 1137 RT_NOREF(pThis, pInput, pLstIncludePaths); 1138 int rc ;1138 int rc = VINF_SUCCESS; 1139 1139 switch (pKeyword->u64Val) 1140 1140 { … … 1210 1210 rc = xpidlParseError(pThis, pInput, NULL, VERR_INVALID_PARAMETER, "Unexpected keyword '%s' found", 1211 1211 pKeyword->pszMatch); 1212 } 1212 } 1213 1213 return rc; 1214 1214 }
Note:
See TracChangeset
for help on using the changeset viewer.