From: cristy Date: Fri, 19 Mar 2010 00:29:27 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~9779 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=107abe658b54f3c94a548f8f9c692ad9954a0232;p=imagemagick --- diff --git a/ImageMagick.spec b/ImageMagick.spec index 6260e836d..8a8842b59 100644 --- a/ImageMagick.spec +++ b/ImageMagick.spec @@ -1,5 +1,5 @@ %define VERSION 6.6.0 -%define Patchlevel 8 +%define Patchlevel 7 Name: ImageMagick Version: %{VERSION} diff --git a/coders/dcm.c b/coders/dcm.c index b393c5d45..2ed758d1a 100644 --- a/coders/dcm.c +++ b/coders/dcm.c @@ -3353,7 +3353,6 @@ static Image *ReadDCMImage(const ImageInfo *image_info,ExceptionInfo *exception) (void) SetImageProperty(image,attribute,(char *) data); } attribute=DestroyString(attribute); - data=(unsigned char *) RelinquishMagickMemory(data); } if (image_info->verbose != MagickFalse) { @@ -3386,6 +3385,8 @@ static Image *ReadDCMImage(const ImageInfo *image_info,ExceptionInfo *exception) (void) fprintf(stdout,"\n"); } } + if (data != (unsigned char *) NULL) + data=(unsigned char *) RelinquishMagickMemory(data); if (EOFBlob(image) != MagickFalse) { ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", diff --git a/config/configure.xml b/config/configure.xml index d78339587..27de18fea 100644 --- a/config/configure.xml +++ b/config/configure.xml @@ -8,7 +8,7 @@ - + diff --git a/libtool b/libtool index 5ef32209c..1f1036e88 100755 --- a/libtool +++ b/libtool @@ -1,7 +1,7 @@ #! /bin/sh # libtool - Provide generalized library-building support services. -# Generated automatically by config.status (ImageMagick) 6.6.0-8 +# Generated automatically by config.status (ImageMagick) 6.6.0-7 # Libtool was configured on host magick.imagemagick.org: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # diff --git a/magick/version.h b/magick/version.h index b477b363b..7e00e193b 100644 --- a/magick/version.h +++ b/magick/version.h @@ -30,7 +30,7 @@ extern "C" { #define MagickLibVersion 0x660 #define MagickLibVersionText "6.6.0" #define MagickLibVersionNumber 3,0,0 -#define MagickLibAddendum "-8" +#define MagickLibAddendum "-7" #define MagickLibInterface 3 #define MagickLibMinInterface 3 #define MagickReleaseDate "2010-03-18" diff --git a/version.sh b/version.sh index 035acb9fd..fa0b643ff 100644 --- a/version.sh +++ b/version.sh @@ -12,7 +12,7 @@ PACKAGE_NAME='ImageMagick' # PACKAGE_NAME (e.g. "1.0.0"). PACKAGE_VERSION='6.6.0' PACKAGE_LIB_VERSION="0x660" -PACKAGE_RELEASE="8" +PACKAGE_RELEASE="7" PACKAGE_LIB_VERSION_NUMBER="6,6,0,${PACKAGE_RELEASE}" PACKAGE_RELEASE_DATE=`date +%F` PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"