Changeset 70642 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 19, 2018 12:18:45 PM (7 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r70436 r70642 2464 2464 { 2465 2465 int rc2 = hdaMixerAddDrvStream(pThis, pMixSink, pCfg, pDrv); 2466 if (RT_SUCCESS(rc)) 2467 rc = rc2; 2468 } 2469 2470 LogFlowFuncLeaveRC(rc); 2466 if (RT_FAILURE(rc2)) 2467 LogFunc(("Attaching stream failed with %Rrc\n", rc2)); 2468 2469 /* Do not pass failure to rc here, as there might be drivers which aren't 2470 * configured / ready yet. */ 2471 } 2472 2471 2473 return rc; 2472 2474 } -
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r69119 r70642 1580 1580 { 1581 1581 int rc2 = ichac97MixerAddDrvStream(pThis, pMixSink, pCfg, pDrv); 1582 if (RT_SUCCESS(rc)) 1583 rc = rc2; 1582 if (RT_FAILURE(rc2)) 1583 LogFunc(("Attaching stream failed with %Rrc\n", rc2)); 1584 1585 /* Do not pass failure to rc here, as there might be drivers which aren't 1586 * configured / ready yet. */ 1584 1587 } 1585 1588 -
trunk/src/VBox/Devices/Audio/DevSB16.cpp
r69876 r70642 2368 2368 { 2369 2369 int rc2 = sb16CreateDrvStream(pThis, pCfg, pDrv); 2370 if (RT_SUCCESS(rc)) 2371 rc = rc2; 2370 if (RT_FAILURE(rc2)) 2371 LogFunc(("Attaching stream failed with %Rrc\n", rc2)); 2372 2373 /* Do not pass failure to rc here, as there might be drivers which aren't 2374 * configured / ready yet. */ 2372 2375 } 2373 2376
Note:
See TracChangeset
for help on using the changeset viewer.