Changeset 70123 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Dec 14, 2017 10:19:08 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119675
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/HDAStream.cpp
r70121 r70123 732 732 733 733 PHDASTREAMPERIOD pPeriod = &pStream->State.Period; 734 i nt rc = hdaStreamPeriodLock(pPeriod);735 AssertRC(rc);734 if (!hdaStreamPeriodLock(pPeriod)) 735 return VERR_ACCESS_DENIED; 736 736 737 737 bool fProceed = true; … … 777 777 /* State sanity checks. */ 778 778 Assert(ASMAtomicReadBool(&pStream->State.fInReset) == false); 779 780 int rc = VINF_SUCCESS; 779 781 780 782 /* Fetch first / next BDL entry. */
Note:
See TracChangeset
for help on using the changeset viewer.