diff --git a/ImageMagick.spec b/ImageMagick.spec
index 303d8d0..adbe6d2 100644
--- a/ImageMagick.spec
+++ b/ImageMagick.spec
@@ -1,5 +1,5 @@
%define VERSION 6.5.7
-%define Patchlevel 3
+%define Patchlevel 2
Name: ImageMagick
Version: %{VERSION}
diff --git a/config/configure.xml b/config/configure.xml
index 6b12829..def3096 100644
--- a/config/configure.xml
+++ b/config/configure.xml
@@ -8,7 +8,7 @@
<configuremap>
<configure name="NAME" value="ImageMagick"/>
<configure name="LIB_VERSION" value="0x657"/>
- <configure name="LIB_VERSION_NUMBER" value="6,5,7,3"/>
+ <configure name="LIB_VERSION_NUMBER" value="6,5,7,2"/>
<configure name="RELEASE_DATE" value="2009-10-27"/>
<configure name="CONFIGURE" value="./configure "/>
<configure name="PREFIX" value="/usr/local"/>
diff --git a/libtool b/libtool
index 23e6718..f0cc226 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.5.7-3
+# Generated automatically by config.status (ImageMagick) 6.5.7-2
# 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 5d87a0a..17ae3d9 100644
--- a/magick/version.h
+++ b/magick/version.h
@@ -30,7 +30,7 @@
#define MagickLibVersion 0x657
#define MagickLibVersionText "6.5.7"
#define MagickLibVersionNumber 2,0,0
-#define MagickLibSubversion "-3"
+#define MagickLibSubversion "-2"
#define MagickReleaseDate "2009-10-27"
#define MagickChangeDate "20091026"
#define MagickAuthoritativeURL "http://www.imagemagick.org"
diff --git a/version.sh b/version.sh
index cadc172..5203344 100644
--- a/version.sh
+++ b/version.sh
@@ -12,7 +12,7 @@
# PACKAGE_NAME (e.g. "1.0.0").
PACKAGE_VERSION='6.5.7'
PACKAGE_LIB_VERSION="0x657"
-PACKAGE_RELEASE="3"
+PACKAGE_RELEASE="2"
PACKAGE_LIB_VERSION_NUMBER="6,5,7,${PACKAGE_RELEASE}"
PACKAGE_RELEASE_DATE=`date +%F`
PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
diff --git a/wand/mogrify-private.h b/wand/mogrify-private.h
index e964769..924f4e8 100644
--- a/wand/mogrify-private.h
+++ b/wand/mogrify-private.h
@@ -41,7 +41,10 @@
ResetImageOptions(image_info); \
FireImageStack(MagickTrue,advance,MagickTrue); \
if (image != (Image *) NULL) \
- (void) SyncImagesSettings(image_info,image); \
+ { \
+ InheritException(exception,&(image)->exception); \
+ (void) SyncImagesSettings(image_info,image); \
+ } \
}
#define FireImageStack(postfix,advance,fire) \
if ((j <= i) && (i < argc)) \