From d8a6be8f1fcb153a116b45d8846dab9fac78a8f3 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sun, 7 Mar 2004 04:03:27 +0000 Subject: [PATCH] gst/qtdemux/qtdemux.c: Fix crash (j might be greater than n_samples, in which case we're writing outside the allocate... Original commit message from CVS: * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse_trak): Fix crash (j might be greater than n_samples, in which case we're writing outside the allocated space for the array) and memleak. --- ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index da7e7e3d4d..21af3a43f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-06 Ronald Bultje + + * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), + (qtdemux_parse_trak): + Fix crash (j might be greater than n_samples, in which case we're + writing outside the allocated space for the array) and memleak. + 2004-03-06 Ronald Bultje * sys/oss/gstosssink.c: (gst_osssink_chain):