structure: remove superfluous guard against NULL
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Sat, 16 Jan 2010 19:41:29 +0000 (19:41 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sat, 16 Jan 2010 19:44:35 +0000 (19:44 +0000)
All callers of this static function already check for NULL-ness
themselves, so no need to do it again (and if we do it, we should
probably do so before dereferencing the pointer for the first time).

gst/gststructure.c

index bb0ce56..fe4a92e 100644 (file)
@@ -702,7 +702,6 @@ gst_structure_id_get_field (const GstStructure * structure, GQuark field_id)
   guint i, len;
 
   len = structure->fields->len;
-  g_return_val_if_fail (structure != NULL, NULL);
 
   for (i = 0; i < len; i++) {
     field = GST_STRUCTURE_FIELD (structure, i);