- Timestamp:
- Jan 7, 2019 11:01:21 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
r76553 r76670 1143 1143 1144 1144 pThis->fEnumOpSuccess = false; 1145 int rc = paWaitFor(pThis, pa_context_get_server_info(pThis->pContext, paEnumServerCb, &CbCtx)); 1145 1146 LogRel(("PulseAudio: Retrieving server information ...\n")); 1147 1148 /* Check if server information is available and bail out early if it isn't. */ 1149 pa_operation *paOpServerInfo = pa_context_get_server_info(pThis->pContext, paEnumServerCb, &CbCtx); 1150 if (!paOpServerInfo) 1151 { 1152 pa_threaded_mainloop_unlock(pThis->pMainLoop); 1153 1154 LogRel(("PulseAudio: Server information not available, skipping enumeration\n")); 1155 return VINF_SUCCESS; 1156 } 1157 1158 int rc = paWaitFor(pThis, paOpServerInfo); 1146 1159 if (RT_SUCCESS(rc) && !pThis->fEnumOpSuccess) 1147 1160 rc = VERR_AUDIO_BACKEND_INIT_FAILED; /* error code does not matter */
Note:
See TracChangeset
for help on using the changeset viewer.