pulsesrc: Don't dereference NULL pointers
pa_stream_get_timing_info() can return NULL. Fixes bug #595220.
This commit is contained in:
parent
bb787f1030
commit
317d6e18a2
@ -528,6 +528,11 @@ gst_pulsesrc_stream_latency_update_cb (pa_stream * s, void *userdata)
|
|||||||
|
|
||||||
info = pa_stream_get_timing_info (s);
|
info = pa_stream_get_timing_info (s);
|
||||||
|
|
||||||
|
if (!info) {
|
||||||
|
GST_LOG_OBJECT (GST_PULSESRC_CAST (userdata),
|
||||||
|
"latency update (information unknown)");
|
||||||
|
return;
|
||||||
|
}
|
||||||
#if HAVE_PULSE_0_9_11
|
#if HAVE_PULSE_0_9_11
|
||||||
source_usec = info->configured_source_usec;
|
source_usec = info->configured_source_usec;
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user