about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-04-28 18:44:58 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2018-04-28 18:44:58 +0000
commitbcfb7ea3c80a10cc948e0e82c801fa9365835e34 (patch)
treeca9b3e5e12fa5625fa0bce82ceb2bcd2bc3f0709
parent061f33baadeee64fb7e2cea902977e1cb5e3c0dc (diff)
downloadnetpbm-mirror-bcfb7ea3c80a10cc948e0e82c801fa9365835e34.tar.gz
netpbm-mirror-bcfb7ea3c80a10cc948e0e82c801fa9365835e34.tar.xz
netpbm-mirror-bcfb7ea3c80a10cc948e0e82c801fa9365835e34.zip
Release 10.73.19
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@3244 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/ppm/ilbmtoppm.c2
-rw-r--r--doc/HISTORY7
-rw-r--r--version.mk2
3 files changed, 10 insertions, 1 deletions
diff --git a/converter/ppm/ilbmtoppm.c b/converter/ppm/ilbmtoppm.c
index 662be0b5..280ca939 100644
--- a/converter/ppm/ilbmtoppm.c
+++ b/converter/ppm/ilbmtoppm.c
@@ -403,6 +403,8 @@ read_clut(FILE *        const ifP,
         unsigned long remainingChunksize;
         unsigned int i;
 
+        remainingChunksize = chunksize;  /* initial value */
+
         type = get_big_long(ifP, iffid, &remainingChunksize);
         get_big_long(ifP, iffid, &remainingChunksize); /* skip reserved fld */
 
diff --git a/doc/HISTORY b/doc/HISTORY
index 76272b0b..a83c5bf1 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,13 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+18.04.28 BJH  Release 10.73.19
+
+              ilbmtoppm: Fix bug: may fail with bogus error message about an
+              invalid CLUT chunk if image has a CLUT chunk.  Introduced after
+              Netpbm 10.26 (January 2005) and at or before Netpbm 10.35
+              (August 2006).
+
 18.02.17 BJH  Release 10.73.18
 
               g3topbm: Fix bug - produces invalid empty PBM image if input
diff --git a/version.mk b/version.mk
index f6364e3b..a0168fc6 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 73
-NETPBM_POINT_RELEASE = 18
+NETPBM_POINT_RELEASE = 19