decklink: remove useless and uninitialized list causing a crash in the device probe
authorYouness Alaoui <youness.alaoui@collabora.co.uk>
Fri, 21 Dec 2012 12:35:13 +0000 (07:35 -0500)
committerOlivier CrĂȘte <olivier.crete@collabora.com>
Wed, 26 Dec 2012 18:11:50 +0000 (13:11 -0500)
sys/decklink/gstdecklinksink.cpp
sys/decklink/gstdecklinksrc.cpp

index 7ee661e..46a71a6 100644 (file)
@@ -1271,7 +1271,6 @@ gst_decklink_sink_class_list_devices (GstElementClass * klass)
   GValueArray *array;
   GValue value = {
   0};
-  GList *item;
   int i;
 
   array = g_value_array_new (n_devices);
@@ -1279,8 +1278,6 @@ gst_decklink_sink_class_list_devices (GstElementClass * klass)
   for (i = 0; i < n_devices; i++) {
     g_value_set_int (&value, i);
     g_value_array_append (array, &value);
-
-    item = item->next;
   }
   g_value_unset (&value);
 
index 331ca72..c3ec84b 100644 (file)
@@ -1468,7 +1468,6 @@ gst_decklinksrc_class_list_devices (GstElementClass * klass)
 {
   GValueArray *array;
   GValue value = { 0 };
-  GList *item;
   int i;
 
   array = g_value_array_new (n_devices);
@@ -1476,8 +1475,6 @@ gst_decklinksrc_class_list_devices (GstElementClass * klass)
   for (i = 0; i < n_devices; i++) {
     g_value_set_int (&value, i);
     g_value_array_append (array, &value);
-
-    item = item->next;
   }
   g_value_unset (&value);