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:
Benjamin Otte 2003-04-17 14:52:38 +00:00
parent 30267f6a64
commit 354e85056f

View file

@ -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) {