- Timestamp:
- Jul 27, 2016 9:41:26 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r62117 r62579 340 340 } 341 341 else 342 rc = VERR_WRONG_TYPE;342 AssertFailedStmt(rc = VERR_WRONG_TYPE); 343 343 } 344 344 else if (pStream->enmDir == PDMAUDIODIR_OUT) … … 355 355 } 356 356 else 357 rc = VERR_WRONG_TYPE;357 AssertFailedStmt(rc = VERR_WRONG_TYPE); 358 358 } 359 359 else … … 387 387 PPDMIAUDIOCONNECTOR pConn, PPDMAUDIOSTREAMCFG pCfg, uint32_t fFlags, PAUDMIXSTREAM *ppStream) 388 388 { 389 AssertPtrReturn(pSink, 390 AssertPtrReturn(pConn, 391 AssertPtrReturn(pCfg, 389 AssertPtrReturn(pSink, VERR_INVALID_POINTER); 390 AssertPtrReturn(pConn, VERR_INVALID_POINTER); 391 AssertPtrReturn(pCfg, VERR_INVALID_POINTER); 392 392 /** @todo Validate fFlags. */ 393 393 /* ppStream is optional. */
Note:
See TracChangeset
for help on using the changeset viewer.