]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Thu, 13 Dec 2012 16:43:21 +0000 (16:43 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Thu, 13 Dec 2012 16:43:21 +0000 (16:43 +0000)
MagickCore/cache-view.c

index 9a884ee702ee7435e87ebeac0e88c6500905ecca..84746d3a77d8a29b2f96c334bdd75a43c61ef1df 100644 (file)
@@ -115,18 +115,9 @@ MagickExport CacheView *AcquireAuthenticCacheView(const Image *image)
   ExceptionInfo
     *exception;
 
-  MagickBooleanType
-    status;
-
   cache_view=AcquireVirtualCacheView(image);
   exception=AcquireExceptionInfo();
-  status=SyncImagePixelCache(cache_view->image,exception);
-  if (status == MagickFalse)
-    {
-      CatchException(exception);
-      MagickCoreTerminus();
-      _exit((int) (CacheFatalError-FatalErrorException)+1);
-    }
+  (void) SyncImagePixelCache(cache_view->image,exception);
   exception=DestroyExceptionInfo(exception);
   return(cache_view);
 }