Original commit message from CVS:
fix bug #96751
This commit is contained in:
Wim Taymans 2002-12-08 01:26:02 +00:00
parent 7d3c4b8d6c
commit 9e8e9385cb

View file

@ -90,7 +90,8 @@ graph: /* empty */ { $$ = g_new0 (graph_t, 1); *((graph_t**) p
}
| graph connection { $$ = $1;
$$->connections = g_list_append ($$->connections, $2);
$2->src_index = $$->current->index;
if ($$->current)
$2->src_index = $$->current->index;
if (!$2->sink_name)
$$->connections_pending = g_list_append ($$->connections_pending, $2);
}