Attached is the patch for the NMU for this bug that I will be
uploading shortly under the current 0-day policy.

diff -ruN ../orig/iproute-20041019/debian/changelog 
iproute-20041019/debian/changelog
--- ../orig/iproute-20041019/debian/changelog   2006-01-14 01:52:32.000000000 
+0000
+++ iproute-20041019/debian/changelog   2006-01-14 02:11:56.000000000 +0000
@@ -1,3 +1,10 @@
+iproute (20041019-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix size of table allocation (closes: #326961, #338575)
+
+ -- Blars Blarson <[EMAIL PROTECTED]>  Sat, 14 Jan 2006 02:07:18 +0000
+
 iproute (20041019-4) unstable; urgency=low
 
   * New maintainer, closes: #295122.
diff -ruN ../orig/iproute-20041019/tc/paretonormal.c 
iproute-20041019/tc/paretonormal.c
--- ../orig/iproute-20041019/tc/paretonormal.c  2004-10-19 20:49:02.000000000 
+0000
+++ iproute-20041019/tc/paretonormal.c  2006-01-14 01:59:38.000000000 +0000
@@ -54,7 +54,7 @@
        double *table;
        int i,n;
 
-       table = calloc(TABLESIZE, sizeof(double));
+       table = calloc(TABLESIZE+1, sizeof(double));
        if (!table) {
                fprintf(stderr, "Out of memory!\n");
                exit(1);

Reply via email to