mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
another bugfix, i will never get used to using the retrun value of g_(s)list_prepend
Original commit message from CVS: another bugfix, i will never get used to using the retrun value of g_(s)list_prepend
This commit is contained in:
parent
30267f6a64
commit
354e85056f
1 changed files with 1 additions and 1 deletions
|
@ -642,7 +642,7 @@ chain: element { $$ = gst_parse_chain_new ();
|
|||
|
||||
| chain linklist { GSList *walk;
|
||||
if ($1->back) {
|
||||
g_slist_prepend ($2, $1->back);
|
||||
$2 = g_slist_prepend ($2, $1->back);
|
||||
$1->back = NULL;
|
||||
} else {
|
||||
if (!((link_t *) $2->data)->src_name) {
|
||||
|
|
Loading…
Reference in a new issue