mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
NULL is a valid props
Original commit message from CVS: NULL is a valid props
This commit is contained in:
parent
4d278e135a
commit
e10992295e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue