mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
fix bogus warning
Original commit message from CVS: fix bogus warning
This commit is contained in:
parent
4ef9f4abc2
commit
f88ed0bae1
1 changed files with 2 additions and 2 deletions
|
@ -685,7 +685,7 @@ G_STMT_START { \
|
|||
entry->propstype = va_arg (var_args, GstPropsType); \
|
||||
if (entry->propstype == GST_PROPS_LIST_TYPE) { \
|
||||
GList *_list = NULL; \
|
||||
GstPropsEntry *_cur; \
|
||||
GstPropsEntry *_cur = NULL; /* initialize so gcc doesn't complain */ \
|
||||
GstPropsType _cur_type; \
|
||||
GstPropsType _type = va_arg (var_args, GstPropsType); \
|
||||
_cur_type = _type; \
|
||||
|
@ -704,7 +704,7 @@ G_STMT_START { \
|
|||
} \
|
||||
_cur_type = va_arg (var_args, GstPropsType); \
|
||||
} \
|
||||
if (g_list_next (_list)) { \
|
||||
if (_list && g_list_next (_list)) { \
|
||||
entry->data.list_data.entries = _list; \
|
||||
} else { \
|
||||
entry->propstype = _cur->propstype; \
|
||||
|
|
Loading…
Reference in a new issue