NULL is a valid props

Original commit message from CVS:
NULL is a valid props
This commit is contained in:
David Schleef 2003-06-16 17:43:42 +00:00
parent 4d278e135a
commit e10992295e

View file

@ -1703,7 +1703,7 @@ gst_props_entry_get_safe (const GstPropsEntry *entry, ...)
gboolean result;
va_list var_args;
g_return_val_if_fail (entry != NULL, FALSE);
if(entry == NULL) return FALSE;
va_start (var_args, entry);
result = gst_props_entry_getv (entry, TRUE, var_args);