r45374 - in /packages/libmatio/tags/1.3.4-4: ./ changelog patches/fix-size-issue.diff patches/series

sylvestre at users.alioth.debian.org sylvestre at users.alioth.debian.org
Thu Oct 4 11:03:02 UTC 2012


Author: sylvestre
Date: Thu Oct  4 11:03:01 2012
New Revision: 45374

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=45374
Log:
  * Rebuild to reconstruct the PDF files (Closes: #685694)
  * Add a patch to fix openmeeg rebuild issue
    Thanks to Salvatore Bonaccorso & Sébastien Villemot for digging into.

Added:
    packages/libmatio/tags/1.3.4-4/
      - copied from r45373, packages/libmatio/tags/1.3.4-3/
    packages/libmatio/tags/1.3.4-4/patches/fix-size-issue.diff
    packages/libmatio/tags/1.3.4-4/patches/series
Modified:
    packages/libmatio/tags/1.3.4-4/changelog

Modified: packages/libmatio/tags/1.3.4-4/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/libmatio/tags/1.3.4-4/changelog?rev=45374&op=diff
==============================================================================
--- packages/libmatio/tags/1.3.4-4/changelog (original)
+++ packages/libmatio/tags/1.3.4-4/changelog Thu Oct  4 11:03:01 2012
@@ -1,3 +1,11 @@
+libmatio (1.3.4-4) unstable; urgency=low
+
+  * Rebuild to reconstruct the PDF files (Closes: #685694)
+  * Add a patch to fix openmeeg rebuild issue
+    Thanks to Salvatore Bonaccorso & Sébastien Villemot for digging into.
+
+ -- Sylvestre Ledru <sylvestre at debian.org>  Thu, 04 Oct 2012 12:49:55 +0200
+
 libmatio (1.3.4-3) unstable; urgency=low
 
   * Standards-Version updated to version 3.9.2

Added: packages/libmatio/tags/1.3.4-4/patches/fix-size-issue.diff
URL: http://svn.debian.org/wsvn/debian-science/packages/libmatio/tags/1.3.4-4/patches/fix-size-issue.diff?rev=45374&op=file
==============================================================================
--- packages/libmatio/tags/1.3.4-4/patches/fix-size-issue.diff (added)
+++ packages/libmatio/tags/1.3.4-4/patches/fix-size-issue.diff Thu Oct  4 11:03:01 2012
@@ -1,0 +1,25 @@
+From 4b096356fda6973b404218bb7536b7267641fc55 Mon Sep 17 00:00:00 2001
+From: Christopher Hulbert <cch at isl-inc.com>
+Date: Mon, 19 Jan 2009 20:19:38 +0000
+Subject: [PATCH] src/inflate.c (InflateData): Fixed nmemb argument to fread in while loop when (nBytes-bytesread)<1024 which would overwrite the buffer if nBytes > 1024
+
+---
+ src/inflate.c |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/src/inflate.c b/src/inflate.c
+index 53198b3..bb42d20 100644
+--- a/src/inflate.c
++++ b/src/inflate.c
+@@ -658,7 +658,7 @@ InflateData(mat_t *mat, z_stream *z, void *buf, int nBytes)
+             bytesread  += z->avail_in;
+             z->next_in  = comp_buf;
+         } else {
+-            z->avail_in = fread(comp_buf,1,nBytes,mat->fp);
++            z->avail_in = fread(comp_buf,1,nBytes-bytesread,mat->fp);
+             bytesread  += z->avail_in;
+             z->next_in  = comp_buf;
+         }
+-- 
+1.7.4.1
+

Added: packages/libmatio/tags/1.3.4-4/patches/series
URL: http://svn.debian.org/wsvn/debian-science/packages/libmatio/tags/1.3.4-4/patches/series?rev=45374&op=file
==============================================================================
--- packages/libmatio/tags/1.3.4-4/patches/series (added)
+++ packages/libmatio/tags/1.3.4-4/patches/series Thu Oct  4 11:03:01 2012
@@ -1,0 +1,2 @@
+doxygen.patch
+fix-size-issue.diff




More information about the debian-science-commits mailing list