Changeset 89558 in vbox
- Timestamp:
- Jun 8, 2021 8:11:48 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r89489 r89558 175 175 176 176 int rc; 177 PAUDIOMIXER pMixer = (PAUDIOMIXER)RTMemAllocZ (sizeof(AUDIOMIXER) + cchName + 1);177 PAUDIOMIXER pMixer = (PAUDIOMIXER)RTMemAllocZVar(sizeof(AUDIOMIXER) + cchName + 1); 178 178 if (pMixer) 179 179 { … … 379 379 * Allocate the data and initialize the critsect. 380 380 */ 381 PAUDMIXSINK pSink = (PAUDMIXSINK)RTMemAllocZ (sizeof(AUDMIXSINK) + cchName + 1);381 PAUDMIXSINK pSink = (PAUDMIXSINK)RTMemAllocZVar(sizeof(AUDMIXSINK) + cchName + 1); 382 382 if (pSink) 383 383 {
Note:
See TracChangeset
for help on using the changeset viewer.