about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--converter/other/pamtosvg/fit.c2
-rw-r--r--doc/HISTORY4
-rw-r--r--version.mk2
3 files changed, 6 insertions, 2 deletions
diff --git a/converter/other/pamtosvg/fit.c b/converter/other/pamtosvg/fit.c
index d51b010b..f8a23ffb 100644
--- a/converter/other/pamtosvg/fit.c
+++ b/converter/other/pamtosvg/fit.c
@@ -1283,7 +1283,7 @@ computeCX(Curve *                 const curveP,
 
     unsigned int pointSeq;
 
-    cP->beg.beg = 0.0; cP->beg.end = 0.0; cP->end.end = 0.0;/* initial value */
+    cP->beg.beg = 0.0; cP->beg.end = 0.0; cP->end.beg = 0.0; cP->end.end = 0.0;/* initial value */
 
     xP->beg = 0.0; xP->end = 0.0; /* initial value */
 
diff --git a/doc/HISTORY b/doc/HISTORY
index cd02eafc..a766e579 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,10 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+23.10.24 BJH  Release 11.04.03
+
+              pamtosvg: fix "zero determinant" failure.  Introduced in
+              Netpbm 11.04 (September 2023).
 
 23.09.29 BJH  Release 11.04.02
 
diff --git a/version.mk b/version.mk
index 6c779507..f7e29654 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 11
 NETPBM_MINOR_RELEASE = 4
-NETPBM_POINT_RELEASE = 2
+NETPBM_POINT_RELEASE = 3