Changeset 63778 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 9, 2016 12:37:34 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r63743 r63778 162 162 } 163 163 else 164 AssertReleaseMsgFailed(("Stream '%s' does not have a host pair (anymore)\n", 165 pStream->szName)); 164 LogRel(("Audio: Warning: Stream '%s' does not have a host stream (anymore)\n", pStream->szName)); 166 165 167 166 return pHstStream; … … 1089 1088 PPDMAUDIOSTREAM pHstStream = drvAudioGetHostStream(pStream); 1090 1089 AssertPtr(pHstStream); 1091 PPDMAUDIOSTREAM pGstStream = pHstStream ->pPair;1090 PPDMAUDIOSTREAM pGstStream = pHstStream ? pHstStream->pPair : NULL; 1092 1091 AssertPtr(pGstStream); 1093 1092 … … 1188 1187 PPDMAUDIOSTREAM pHstStream = drvAudioGetHostStream(pStream); 1189 1188 AssertPtr(pHstStream); 1190 PPDMAUDIOSTREAM pGstStream = pHstStream ->pPair;1189 PPDMAUDIOSTREAM pGstStream = pHstStream ? pHstStream->pPair : NULL; 1191 1190 AssertPtr(pGstStream); 1192 1191
Note:
See TracChangeset
for help on using the changeset viewer.