about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2016-09-02 21:44:50 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2016-09-02 21:44:50 +0000
commit7b98b1c658535137a3e1f5633cf7daac3347037c (patch)
tree28ec8c967c98ac5dbb21701eaf1e9a54bc9f1247
parent07431300cd6722ab783dcda1d7be5844984f9364 (diff)
downloadnetpbm-mirror-7b98b1c658535137a3e1f5633cf7daac3347037c.tar.gz
netpbm-mirror-7b98b1c658535137a3e1f5633cf7daac3347037c.tar.xz
netpbm-mirror-7b98b1c658535137a3e1f5633cf7daac3347037c.zip
Release 10.75.03
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2818 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--doc/HISTORY8
-rwxr-xr-xeditor/pnmquantall4
-rw-r--r--version.mk2
3 files changed, 8 insertions, 6 deletions
diff --git a/doc/HISTORY b/doc/HISTORY
index 560c04c2..65b64783 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,14 +4,16 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+16.09.02 BJH  Release 10.75.03
+
+              pnmquantall: Fix incorrect handling of when the Pnmremap or
+              the final rename fails.
+
 16.09.01 BJH  Release 10.75.02
 
               pnmquantall: Fix failure when temporary file location is
               not the same filesystem as the output file.
 
-              pnmquantall: Fix incorrect handling of when the Pnmremap or
-              the final rename fails.
-
               Build: tifftopnm.c: fix undefined WIFSIGNALED, etc. in 
 
 16.08.13 BJH  Release 10.75.01
diff --git a/editor/pnmquantall b/editor/pnmquantall
index 274ce62d..d268227d 100755
--- a/editor/pnmquantall
+++ b/editor/pnmquantall
@@ -170,7 +170,7 @@ sub remapFiles($$$$) {
             my $pnmremapTermStatus = system($pnmremapCmd);
 
             if ($pnmremapTermStatus != 0) {
-                $errorR =
+                $$errorR =
                     "Shell command to quantize '$inFileName'  failed:  " .
                     "'$pnmremapCmd'";
             } else {
@@ -178,7 +178,7 @@ sub remapFiles($$$$) {
 
                 unlink($newFileName);
                 File::Copy::move($outputFileName, $newFileName)
-                    or $errorR = "Rename to '$newFileName' failed.";
+                    or $$errorR = "Rename to '$newFileName' failed.";
             }
         }
         unlink($outputFileName);  # In case something failed
diff --git a/version.mk b/version.mk
index bd5a39ab..2e1fd526 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 75
-NETPBM_POINT_RELEASE = 2
+NETPBM_POINT_RELEASE = 3