Changeset 2109 in vbox for trunk/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect
- Timestamp:
- Apr 16, 2007 4:40:51 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20427
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp
r2093 r2109 1863 1863 1864 1864 nsIException *xcpt = nsnull; 1865 rv = dConnect->DeserializeException (completion.Params(), 1866 completion.ParamsLen(), 1867 mPeerID, &xcpt); 1868 if (NS_SUCCEEDED(rv)) 1869 { 1870 rv = em->SetCurrentException(xcpt); 1865 nsresult rv2; // preserve rv for returning to the caller 1866 rv2 = dConnect->DeserializeException (completion.Params(), 1867 completion.ParamsLen(), 1868 mPeerID, &xcpt); 1869 if (NS_SUCCEEDED(rv2)) 1870 { 1871 rv2 = em->SetCurrentException(xcpt); 1871 1872 NS_IF_RELEASE(xcpt); 1872 1873 } 1873 NS_ASSERTION(NS_SUCCEEDED(rv ), "failed to deserialize/set exception");1874 NS_ASSERTION(NS_SUCCEEDED(rv2), "failed to deserialize/set exception"); 1874 1875 } 1875 1876 }
Note:
See TracChangeset
for help on using the changeset viewer.