]> granicus.if.org Git - imagemagick/commitdiff
...
authorCristy <urban-warrior@imagemagick.org>
Thu, 16 Feb 2017 13:48:26 +0000 (08:48 -0500)
committerCristy <urban-warrior@imagemagick.org>
Thu, 16 Feb 2017 13:48:26 +0000 (08:48 -0500)
MagickCore/cache.c

index 92c06976d7c7989a81cf9237bfc2e47c65efba6b..34dd519ea4a0f8bd01a760c3751a58ab23617e59 100644 (file)
@@ -157,7 +157,7 @@ static SemaphoreInfo
   *cache_semaphore = (SemaphoreInfo *) NULL;
 
 static ssize_t
-  anonymous_pixel_cache = (-1);
+  cache_anonymous_memory = (-1);
 
 static time_t
   cache_epoch = 0;
@@ -3433,7 +3433,7 @@ static MagickBooleanType OpenPixelCache(Image *image,const MapMode mode,
   assert(image->cache != (Cache) NULL);
   if (image->debug != MagickFalse)
     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
-  if (anonymous_pixel_cache < 0)
+  if (cache_anonymous_memory < 0)
     {
       char
         *value;
@@ -3441,10 +3441,10 @@ static MagickBooleanType OpenPixelCache(Image *image,const MapMode mode,
       /*
         Does the security policy require anonymous mapping for pixel cache?
       */
-      anonymous_pixel_cache=0;
-      value=GetPolicyValue("pixel-cache");
+      cache_anonymous_memory=0;
+      value=GetPolicyValue("pixel-cache-memory");
       if (LocaleCompare(value,"anonymous") == 0)
-        anonymous_pixel_cache=1;
+        cache_anonymous_memory=1;
       value=DestroyString(value);
     }
   if ((image->columns == 0) || (image->rows == 0))
@@ -3500,7 +3500,7 @@ static MagickBooleanType OpenPixelCache(Image *image,const MapMode mode,
           (cache_info->type == MemoryCache))
         {
           status=MagickTrue;
-          if (anonymous_pixel_cache == 0)
+          if (cache_anonymous_memory <= 0)
             {
               cache_info->mapped=MagickFalse;
               cache_info->pixels=(Quantum *) MagickAssumeAligned(
@@ -4694,7 +4694,7 @@ static inline MagickBooleanType AcquireCacheNexusPixels(
 {
   if (nexus_info->length != (MagickSizeType) ((size_t) nexus_info->length))
     return(MagickFalse);
-  if (anonymous_pixel_cache == 0)
+  if (cache_anonymous_memory <= 0)
     {
       nexus_info->mapped=MagickFalse;
       nexus_info->cache=(Quantum *) MagickAssumeAligned(AcquireAlignedMemory(1,