From acd527864efe6651f58a291ec6d707188ea20b29 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Mon, 27 Nov 2006 03:12:47 +0000 Subject: Release 10.35.18 git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@146 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- Makefile.version | 2 +- buildtools/configure.pl | 2 +- doc/HISTORY | 7 +++++++ lib/libppmcolor.c | 1 + 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile.version b/Makefile.version index d481103e..2260378d 100644 --- a/Makefile.version +++ b/Makefile.version @@ -1,3 +1,3 @@ NETPBM_MAJOR_RELEASE = 10 NETPBM_MINOR_RELEASE = 35 -NETPBM_POINT_RELEASE = 17 +NETPBM_POINT_RELEASE = 18 diff --git a/buildtools/configure.pl b/buildtools/configure.pl index e061b13b..464c89d0 100755 --- a/buildtools/configure.pl +++ b/buildtools/configure.pl @@ -586,7 +586,7 @@ sub libSuffix($) { if ($platform eq 'windows') { $suffix = '.a'; - } elsif ($platform= 'darwin') { + } elsif ($platform eq 'darwin') { $suffix = '.dylib'; } else { $suffix = '.so'; diff --git a/doc/HISTORY b/doc/HISTORY index ab59d041..55f1055e 100644 --- a/doc/HISTORY +++ b/doc/HISTORY @@ -4,6 +4,13 @@ Netpbm. CHANGE HISTORY -------------- +06.11.27 BJH Release 10.35.18 + + Configure: Fix incorrect .dylib suffix in shared library default. + + libnetpbm: fix bogus results from ppm_parsecolor() of + rgb:0/0/0 style color name. + 06.11.18 BJH Release 10.35.17 ppmtogif: fix garbage output with non-ppm-raw input; diff --git a/lib/libppmcolor.c b/lib/libppmcolor.c index 7cfacd29..8ecfd80d 100644 --- a/lib/libppmcolor.c +++ b/lib/libppmcolor.c @@ -145,6 +145,7 @@ parseHexDigits(const char * const string, pixval n; digitCount = 0; + n = 0; while (string[digitCount] != delim) { char const digit = string[digitCount]; if (digit == '\0') -- cgit 1.4.1