Invalid colormap index is now a warning instead of an error.
diff --git a/MagickCore/image.c b/MagickCore/image.c
index 5e21986..6d1d3b1 100644
--- a/MagickCore/image.c
+++ b/MagickCore/image.c
@@ -3578,8 +3578,8 @@
   image_view=DestroyCacheView(image_view);
   image->taint=taint;
   if ((image->ping == MagickFalse) && (range_exception != MagickFalse))
-    (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
-      "InvalidColormapIndex","`%s'",image->filename);
+    (void) ThrowMagickException(exception,GetMagickModule(),
+      CorruptImageWarning,"InvalidColormapIndex","`%s'",image->filename);
   return(status);
 }