summaryrefslogtreecommitdiffstats
path: root/src/sink.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sink.c')
-rw-r--r--src/sink.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/sink.c b/src/sink.c
index 02ca3468..dfe1bcb9 100644
--- a/src/sink.c
+++ b/src/sink.c
@@ -40,11 +40,14 @@ struct sink* sink_new(struct core *core, const char *name, const struct sample_s
}
void sink_free(struct sink *s) {
- struct input_stream *i;
+ struct input_stream *i, *j = NULL;
assert(s);
- while ((i = idxset_rrobin(s->input_streams, NULL)))
- input_stream_free(i);
+ while ((i = idxset_first(s->input_streams, NULL))) {
+ assert(i != j);
+ input_stream_kill(i);
+ j = i;
+ }
idxset_free(s->input_streams, NULL, NULL);
idxset_remove_by_data(s->core->sinks, s, NULL);