Changeset 97072 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Oct 10, 2022 4:31:26 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r97058 r97072 245 245 if (pThis->fIntNetR3Svc) 246 246 { 247 xpc_object_t hObj = xpc_dictionary_create _empty();247 xpc_object_t hObj = xpc_dictionary_create(NULL, NULL, 0); 248 248 xpc_dictionary_set_uint64(hObj, "req-id", uOperation); 249 249 xpc_dictionary_set_data(hObj, "req", pvArg, cbArg); … … 279 279 if (pThis->fIntNetR3Svc) 280 280 { 281 xpc_object_t hObj = xpc_dictionary_create _empty();281 xpc_object_t hObj = xpc_dictionary_create(NULL, NULL, 0); 282 282 xpc_dictionary_set_uint64(hObj, "req-id", uOperation); 283 283 xpc_dictionary_set_data(hObj, "req", pvArg, cbArg); … … 312 312 if (pThis->fIntNetR3Svc) 313 313 { 314 xpc_object_t hObj = xpc_dictionary_create _empty();314 xpc_object_t hObj = xpc_dictionary_create(NULL, NULL, 0); 315 315 xpc_dictionary_set_uint64(hObj, "req-id", VMMR0_DO_INTNET_IF_GET_BUFFER_PTRS); 316 316 xpc_dictionary_set_data(hObj, "req", &GetBufferPtrsReq, sizeof(GetBufferPtrsReq));
Note:
See TracChangeset
for help on using the changeset viewer.