Changeset 53507 in vbox
- Timestamp:
- Dec 11, 2014 11:10:39 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r53485 r53507 3387 3387 3388 3388 if (pThis->pu32CorbBuf) 3389 RT_ ZERO(pThis->pu32CorbBuf);3389 RT_BZERO(pThis->pu32CorbBuf, pThis->cbCorbBuf); 3390 3390 else 3391 3391 pThis->pu32CorbBuf = (uint32_t *)RTMemAllocZ(pThis->cbCorbBuf); … … 3393 3393 pThis->cbRirbBuf = 256 * sizeof(uint64_t); 3394 3394 if (pThis->pu64RirbBuf) 3395 RT_ ZERO(pThis->pu64RirbBuf);3395 RT_BZERO(pThis->pu64RirbBuf, pThis->cbRirbBuf); 3396 3396 else 3397 3397 pThis->pu64RirbBuf = (uint64_t *)RTMemAllocZ(pThis->cbRirbBuf);
Note:
See TracChangeset
for help on using the changeset viewer.