- Timestamp:
- Aug 9, 2017 3:18:01 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
r68355 r68357 363 363 AssertPtrReturnVoid(pStream); 364 364 365 PPULSEAUDIOSTREAM pStr m= (PPULSEAUDIOSTREAM)pvUser;366 AssertPtrReturnVoid(pStr m);367 368 pStr m->fOpSuccess = fSuccess;365 PPULSEAUDIOSTREAM pStreamPA = (PPULSEAUDIOSTREAM)pvUser; 366 AssertPtrReturnVoid(pStreamPA); 367 368 pStreamPA->fOpSuccess = fSuccess; 369 369 if (fSuccess) 370 370 { … … 373 373 } 374 374 else 375 paError(pStr m->pDrv, "Failed to drain stream");376 377 if (pStr m->pDrainOp)378 { 379 pa_operation_unref(pStr m->pDrainOp);380 pStr m->pDrainOp = NULL;375 paError(pStreamPA->pDrv, "Failed to drain stream"); 376 377 if (pStreamPA->pDrainOp) 378 { 379 pa_operation_unref(pStreamPA->pDrainOp); 380 pStreamPA->pDrainOp = NULL; 381 381 } 382 382 }
Note:
See TracChangeset
for help on using the changeset viewer.