From: Cristy Date: Mon, 16 May 2016 15:34:22 +0000 (-0400) Subject: Don't sync pixel cache in AcquireAuthenticCacheView() X-Git-Tag: 7.0.1-4~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14506ccb15a11d93ae87f7e77c7044220655fa9a;p=imagemagick Don't sync pixel cache in AcquireAuthenticCacheView() --- diff --git a/MagickCore/cache-view.c b/MagickCore/cache-view.c index 503cecaae..ba4afd7e6 100644 --- a/MagickCore/cache-view.c +++ b/MagickCore/cache-view.c @@ -116,7 +116,6 @@ MagickExport CacheView *AcquireAuthenticCacheView(const Image *image, *magick_restrict cache_view; cache_view=AcquireVirtualCacheView(image,exception); - (void) SyncImagePixelCache(cache_view->image,exception); return(cache_view); }