diff -Nru flake-0.11/debian/changelog flake-0.11/debian/changelog --- flake-0.11/debian/changelog 2010-01-04 13:45:02.000000000 +0000 +++ flake-0.11/debian/changelog 2010-11-19 11:57:44.000000000 +0000 @@ -1,3 +1,13 @@ +flake (0.11-2) unstable; urgency=low + + * Update my email address. + * debian/patches/1001-buffer_overrun.patch: + - libflake/lpc.c: Pass max_order instead of max_order+1 to + compute_lpc_coefs(). This avoids a buffer overrun in the + autoc[] array. + + -- Alessio Treglia Fri, 19 Nov 2010 12:57:42 +0100 + flake (0.11-1) unstable; urgency=low * New upstream release. diff -Nru flake-0.11/debian/control flake-0.11/debian/control --- flake-0.11/debian/control 2010-01-04 13:36:12.000000000 +0000 +++ flake-0.11/debian/control 2010-11-19 11:52:06.000000000 +0000 @@ -5,8 +5,7 @@ Uploaders: Free Ekanayaka , Thomas Perl , Joost Yervante Damad , - Alessio Treglia -DM-Upload-Allowed: yes + Alessio Treglia Build-Depends: debhelper (>= 7.0.50~) Standards-Version: 3.8.3 Homepage: http://flake-enc.sourceforge.net/ diff -Nru flake-0.11/debian/gbp.conf flake-0.11/debian/gbp.conf --- flake-0.11/debian/gbp.conf 1970-01-01 00:00:00.000000000 +0000 +++ flake-0.11/debian/gbp.conf 2010-11-19 11:52:54.000000000 +0000 @@ -0,0 +1,3 @@ +[DEFAULT] +pristine-tar = True +sign-tags = True diff -Nru flake-0.11/debian/patches/1001-buffer_overrun.patch flake-0.11/debian/patches/1001-buffer_overrun.patch --- flake-0.11/debian/patches/1001-buffer_overrun.patch 1970-01-01 00:00:00.000000000 +0000 +++ flake-0.11/debian/patches/1001-buffer_overrun.patch 2010-11-19 11:46:03.000000000 +0000 @@ -0,0 +1,18 @@ +Description: Pass max_order instead of max_order+1 to compute_lpc_coefs(). + This avoids a buffer overrun in the autoc[] array. +Origin: upstream, commit:263 +--- + libflake/lpc.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- flake.orig/libflake/lpc.c ++++ flake/libflake/lpc.c +@@ -232,7 +232,7 @@ lpc_calc_coefs(const int32_t *samples, i + int i; + int opt_order; + +- compute_autocorr(samples, blocksize, max_order+1, autoc); ++ compute_autocorr(samples, blocksize, max_order, autoc); + + opt_order = max_order; + if(omethod == FLAKE_ORDER_METHOD_EST) { diff -Nru flake-0.11/debian/patches/series flake-0.11/debian/patches/series --- flake-0.11/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ flake-0.11/debian/patches/series 2010-11-19 11:42:48.000000000 +0000 @@ -0,0 +1 @@ +1001-buffer_overrun.patch