Changeset 100870 in vbox
- Timestamp:
- Aug 14, 2023 12:51:17 PM (16 months ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r98103 r100870 249 249 xpc_dictionary_set_data(hObj, "req", pvArg, cbArg); 250 250 xpc_object_t hObjReply = xpc_connection_send_message_with_reply_sync(pThis->hXpcCon, hObj); 251 xpc_release(hObj); 252 251 253 uint64_t u64Rc = xpc_dictionary_get_uint64(hObjReply, "rc"); 252 254 if (INTNET_R3_SVC_IS_VALID_RC(u64Rc)) -
trunk/src/VBox/NetworkServices/IntNetSwitch/VBoxIntNetSwitch.cpp
r98103 r100870 434 434 xpc_object_t hObjPoke = xpc_dictionary_create(NULL, NULL, 0); 435 435 xpc_connection_send_message(pSession->hXpcCon, hObjPoke); 436 xpc_release(hObjPoke); 436 437 } 437 438 else … … 508 509 xpc_dictionary_set_uint64(hObjReply, "rc", INTNET_R3_SVC_SET_RC(rc)); 509 510 xpc_connection_send_message(hCon, hObjReply); 511 xpc_release(hObjReply); 510 512 return; 511 513 } … … 570 572 xpc_object_t hObjPoke = xpc_dictionary_create(NULL, NULL, 0); 571 573 xpc_connection_send_message(pSession->hXpcCon, hObjPoke); 574 xpc_release(hObjPoke); 572 575 } 573 576 return; … … 587 590 xpc_object_t hObjPoke = xpc_dictionary_create(NULL, NULL, 0); 588 591 xpc_connection_send_message(pSession->hXpcCon, hObjPoke); 592 xpc_release(hObjPoke); 589 593 } 590 594 cbReply = sizeof(INTNETIFABORTWAITREQ); -
trunk/src/VBox/NetworkServices/NetLib/IntNetIf.cpp
r98103 r100870 111 111 xpc_dictionary_set_data(hObj, "req", pReqHdr, pReqHdr->cbReq); 112 112 xpc_object_t hObjReply = xpc_connection_send_message_with_reply_sync(pThis->hXpcCon, hObj); 113 xpc_release(hObj); 114 113 115 int rc = (int)xpc_dictionary_get_int64(hObjReply, "rc"); 114 116
Note:
See TracChangeset
for help on using the changeset viewer.