Changeset 91834 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Oct 19, 2021 8:04:08 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatCommon.cpp
r91826 r91834 385 385 static int audioTestStreamDestroy(PAUDIOTESTENV pTstEnv, PAUDIOTESTSTREAM pStream) 386 386 { 387 int rc = VINF_SUCCESS; 388 if (pStream && pStream->pStream) 387 AssertPtrReturn(pStream, VERR_INVALID_POINTER); 388 389 if (pStream->pStream) 389 390 { 390 391 /** @todo Anything else to do here, e.g. test if there are left over samples or some such? */ … … 397 398 AudioTestMixStreamTerm(&pStream->Mix); 398 399 399 return rc;400 return VINF_SUCCESS; 400 401 } 401 402
Note:
See TracChangeset
for help on using the changeset viewer.