Changeset 90957 in vbox for trunk/src/VBox/ValidationKit/utils/usb
- Timestamp:
- Aug 27, 2021 1:35:33 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/usb/UsbTestService.cpp
r82968 r90957 1123 1123 { 1124 1124 /* Realloc to accommodate for the new clients. */ 1125 PUTSCLIENT *papClientsNew = (PUTSCLIENT *)RTMemRealloc (papClients, (cClientsMax + 10) * sizeof(PUTSCLIENT));1125 PUTSCLIENT *papClientsNew = (PUTSCLIENT *)RTMemReallocZ(papClients, cClientsMax * sizeof(PUTSCLIENT), (cClientsMax + 10) * sizeof(PUTSCLIENT)); 1126 1126 if (RT_LIKELY(papClientsNew)) 1127 1127 {
Note:
See TracChangeset
for help on using the changeset viewer.