about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-09-29 18:36:47 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-09-29 18:36:47 +0000
commit61afac2c302a560b737234a31366b708a532094c (patch)
tree197c91fd2a20d25f009fc95407aae41be88bc2c6
parentcf79c8afa7c3982219b2493254e26390bbdab3b8 (diff)
downloadnetpbm-mirror-61afac2c302a560b737234a31366b708a532094c.tar.gz
netpbm-mirror-61afac2c302a560b737234a31366b708a532094c.tar.xz
netpbm-mirror-61afac2c302a560b737234a31366b708a532094c.zip
Release 11.04.02
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@4709 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/ppm/pjtoppm.c1
-rw-r--r--doc/HISTORY10
-rw-r--r--version.mk2
3 files changed, 10 insertions, 3 deletions
diff --git a/converter/ppm/pjtoppm.c b/converter/ppm/pjtoppm.c
index 7932886c..45746495 100644
--- a/converter/ppm/pjtoppm.c
+++ b/converter/ppm/pjtoppm.c
@@ -179,6 +179,7 @@ main(int argc, const char ** argv) {
     colsIsSet = false;  /* initial value */
     rowsX = 0;  /* initial value */
     image = NULL;  /* initial value */
+    imlen = NULL;  /* initial value */
     planes = 3;  /* initial value */
 
     while ((c = fgetc(ifP)) != -1) {
diff --git a/doc/HISTORY b/doc/HISTORY
index 9e872a35..cd02eafc 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,10 +4,16 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+
+23.09.29 BJH  Release 11.04.02
+
+              pjtoppm: fix crash based on uninitialized variable.
+              Introduced in Netpbm 11.04 (two days ago).
+
 23.09.28 BJH  Release 11.04.01
 
-              Fix compile error on systems without 'asprintf'.  Introduced
-              in Netpbm 11.04 (yesterday).
+              Build: Fix compile error on systems without 'asprintf'.
+              Introduced in Netpbm 11.04 (yesterday).
 
 23.09.27 BJH  Release 11.04.00
 
diff --git a/version.mk b/version.mk
index 72549b67..6c779507 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 11
 NETPBM_MINOR_RELEASE = 4
-NETPBM_POINT_RELEASE = 1
+NETPBM_POINT_RELEASE = 2