From: cristy Date: Thu, 13 Dec 2012 16:43:21 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~4606 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b76491091d6ec2b51df93deddcecbc5834bd733f;p=imagemagick --- diff --git a/MagickCore/cache-view.c b/MagickCore/cache-view.c index 9a884ee70..84746d3a7 100644 --- a/MagickCore/cache-view.c +++ b/MagickCore/cache-view.c @@ -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); }