VirtualBox

Ignore:
Timestamp:
Apr 16, 2007 4:40:51 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
20427
Message:

XPCOM/IPC/DConnect: Fixed: The remote object stub always returned NS_OK after getting a failure from the peer followed by a serialized excetion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp

    r2093 r2109  
    18631863
    18641864      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);
    18711872        NS_IF_RELEASE(xcpt);
    18721873      }
    1873       NS_ASSERTION(NS_SUCCEEDED(rv), "failed to deserialize/set exception");
     1874      NS_ASSERTION(NS_SUCCEEDED(rv2), "failed to deserialize/set exception");
    18741875    }
    18751876  }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette