decklink: Fix crash when probing without driver
If there is no decklink hardware/driver, the devices list is empty (NULL), so this needs to be checked before iterating over the list.
This commit is contained in:
parent
982072ce1d
commit
9f1fbd3649
@ -1586,6 +1586,10 @@ gst_decklink_get_devices (void)
|
|||||||
|
|
||||||
g_once (&devices_once, init_devices, NULL);
|
g_once (&devices_once, init_devices, NULL);
|
||||||
|
|
||||||
|
if (!devices) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
for (i = 0; i < devices->len; i++) {
|
for (i = 0; i < devices->len; i++) {
|
||||||
Device *device = (Device *) g_ptr_array_index (devices, i);
|
Device *device = (Device *) g_ptr_array_index (devices, i);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user