summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 2e4d63bce5..af8ff94611 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -725,7 +725,7 @@ void free_demuxer(demuxer_t *demuxer)
demux_flush(demuxer);
assert(in->total_bytes == 0);
- for (int n = in->num_streams - 1; n >= 0; n--)
+ for (int n = 0; n < in->num_streams; n++)
talloc_free(in->streams[n]);
pthread_mutex_destroy(&in->lock);
pthread_cond_destroy(&in->wakeup);