about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-11-12 15:24:16 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-11-12 15:24:16 +0000
commitdc94d059b5b4301d9d8d37b5a050fe74da6a76cf (patch)
tree60a19ce55c99096c49f84abee63dbd796f379182
parentc54d314b6caa9a07d2e571b434ae4d0d7cbd7d89 (diff)
downloadnetpbm-mirror-dc94d059b5b4301d9d8d37b5a050fe74da6a76cf.tar.gz
netpbm-mirror-dc94d059b5b4301d9d8d37b5a050fe74da6a76cf.tar.xz
netpbm-mirror-dc94d059b5b4301d9d8d37b5a050fe74da6a76cf.zip
Release 10.64.03
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2034 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/pnmtops.c2
-rw-r--r--doc/HISTORY5
-rw-r--r--version.mk2
3 files changed, 7 insertions, 2 deletions
diff --git a/converter/other/pnmtops.c b/converter/other/pnmtops.c
index a523a4f1..1d0a44f7 100644
--- a/converter/other/pnmtops.c
+++ b/converter/other/pnmtops.c
@@ -2031,7 +2031,7 @@ main(int argc, const char * argv[]) {
        that new files will get file descriptor numbers less than 10,
        so we close superfluous files now to make sure that's true.
     */
-    closeAllBut(fileno(ifP), fileno(stdout), fileno(stdout));
+    closeAllBut(fileno(ifP), fileno(stdout), fileno(stderr));
 
     {
         int eof;  /* There are no more images in the input file */
diff --git a/doc/HISTORY b/doc/HISTORY
index f2fa6aa5..d437ff14 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,11 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+13.11.12 BJH  Release 10.64.03
+
+              Fix bug: Pnmtops closes Standard Error.  Introduced in
+              10.64.02 (today).
+
 13.11.12 BJH  Release 10.64.02
 
               Fix bug: program hangs if it inherits lots of open files.
diff --git a/version.mk b/version.mk
index 4427d862..51762910 100644
--- a/version.mk
+++ b/version.mk
@@ -1,4 +1,4 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 64
-NETPBM_POINT_RELEASE = 2
+NETPBM_POINT_RELEASE = 3