Changeset 61542 in vbox for trunk/src/libs/xpcom18a4/xpcom/reflect
- Timestamp:
- Jun 7, 2016 2:17:38 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107879
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_solaris.cpp
r1 r61542 59 59 self->GetInterfaceInfo(&iface_info); 60 60 NS_ASSERTION(iface_info,"no interface info"); 61 if (!iface_info) 62 return NS_ERROR_UNEXPECTED; 61 63 62 64 iface_info->GetMethodInfo(PRUint16(methodIndex), &info); 63 NS_ASSERTION(info,"no interface info"); 65 NS_ASSERTION(info,"no method info"); 66 if (!info) 67 return NS_ERROR_UNEXPECTED; 64 68 65 69 paramCount = info->GetParamCount(); … … 71 75 dispatchParams = paramBuffer; 72 76 NS_ASSERTION(dispatchParams,"no place for params"); 77 if (!dispatchParams) 78 return NS_ERROR_OUT_OF_MEMORY; 73 79 74 80 PRUint32* ap = args;
Note:
See TracChangeset
for help on using the changeset viewer.