Changeset 70635 in vbox
- Timestamp:
- Jan 18, 2018 4:57:59 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120359
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r70630 r70635 8 8 9 9 /* 10 * Copyright (C) 2006-201 7Oracle Corporation10 * Copyright (C) 2006-2018 Oracle Corporation 11 11 * 12 12 * This file is part of VirtualBox Open Source Edition (OSE), as … … 2176 2176 AssertRC(rc2); 2177 2177 2178 if ( !pThis->pHostDrvAudio)2179 return;2180 2181 PPDMAUDIOSTREAM pHstStream;2182 RTListForEach(&pThis->lstHstStreams, pHstStream, PDMAUDIOSTREAM, Node)2183 drvAudioStreamControlInternalBackend(pThis, pHstStream, enmCmd);2178 if (pThis->pHostDrvAudio) 2179 { 2180 PPDMAUDIOSTREAM pHstStream; 2181 RTListForEach(&pThis->lstHstStreams, pHstStream, PDMAUDIOSTREAM, Node) 2182 drvAudioStreamControlInternalBackend(pThis, pHstStream, enmCmd); 2183 } 2184 2184 2185 2185 rc2 = RTCritSectLeave(&pThis->CritSect);
Note:
See TracChangeset
for help on using the changeset viewer.