Changeset 89567 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Jun 8, 2021 10:26:00 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144999
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTestService.cpp
r89541 r89567 891 891 pThis->fStarted = false; 892 892 pThis->fTerminate = false; 893 894 pThis->hPipeR = NIL_RTPIPE; 895 pThis->hPipeW = NIL_RTPIPE; 896 893 897 RTListInit(&pThis->LstClientsNew); 894 898 -
trunk/src/VBox/Devices/Audio/DrvHostAudioValidationKit.cpp
r89561 r89567 799 799 LogRel(("Audio: Validation Kit: Shutdown of Audio Test Service failed, rc=%Rrc\n", rc)); 800 800 801 int rc2 = RTCritSectDelete(&pThis->CritSect); 802 if (RT_SUCCESS(rc)) 803 rc = rc2; 801 if (RTCritSectIsInitialized(&pThis->CritSect)) 802 { 803 int rc2 = RTCritSectDelete(&pThis->CritSect); 804 if (RT_SUCCESS(rc)) 805 rc = rc2; 806 } 804 807 805 808 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.