Changeset 104483 in vbox
- Timestamp:
- May 2, 2024 4:24:55 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/client/src/ipcdclient.cpp
r103505 r104483 1481 1481 // place a message clone to a target's event queue 1482 1482 PCIPCMSG pMsg = (PCIPCMSG)userArg; 1483 PlaceOnPendingQ(aKey, aData, IPC_MsgClone(pMsg)); 1483 PIPCMSG pClone = IPC_MsgClone(pMsg); 1484 Assert(pClone); 1485 if (pClone) 1486 PlaceOnPendingQ(aKey, aData, pClone); 1484 1487 } 1485 1488
Note:
See TracChangeset
for help on using the changeset viewer.