]> granicus.if.org Git - imagemagick/commitdiff
Refactored use of status.
authorDirk Lemstra <dirk@lemstra.org>
Sun, 13 Jan 2019 11:19:47 +0000 (12:19 +0100)
committerDirk Lemstra <dirk@lemstra.org>
Sun, 13 Jan 2019 11:19:47 +0000 (12:19 +0100)
MagickCore/configure.c

index 38bb45db203eedee3aa0ff38c052a8dbc23db30b..6bc78d3dc2abd79ca066120c51608a0f9f6486c0 100644 (file)
@@ -180,7 +180,7 @@ static LinkedListInfo *AcquireConfigureCache(const char *filename,
   LinkedListInfo
     *cache;
 
-  MagickStatusType
+  MagickBooleanType
     status;
 
   register ssize_t
@@ -190,7 +190,6 @@ static LinkedListInfo *AcquireConfigureCache(const char *filename,
     Load external configure map.
   */
   cache=NewLinkedList(0);
-  status=MagickTrue;
 #if !defined(MAGICKCORE_ZERO_CONFIGURATION_SUPPORT)
   {
     const StringInfo
@@ -203,7 +202,7 @@ static LinkedListInfo *AcquireConfigureCache(const char *filename,
     option=(const StringInfo *) GetNextValueInLinkedList(options);
     while (option != (const StringInfo *) NULL)
     {
-      status&=LoadConfigureCache(cache,(const char *)
+      (void) LoadConfigureCache(cache,(const char *)
         GetStringInfoDatum(option),GetStringInfoPath(option),0,exception);
       option=(const StringInfo *) GetNextValueInLinkedList(options);
     }
@@ -226,7 +225,7 @@ static LinkedListInfo *AcquireConfigureCache(const char *filename,
           ResourceLimitError,"MemoryAllocationFailed","`%s'",p->name);
         continue;
       }
-    status&=AppendValueToLinkedList(cache,configure_info);
+    status=AppendValueToLinkedList(cache,configure_info);
     if (status == MagickFalse)
       (void) ThrowMagickException(exception,GetMagickModule(),
         ResourceLimitError,"MemoryAllocationFailed","`%s'",
@@ -240,7 +239,7 @@ static LinkedListInfo *AcquireConfigureCache(const char *filename,
   configure_info=NewConfigureKey("[built-in]","MAGICK_TEMPORARY_PATH",
     head_path);
   if (configure_info != (ConfigureInfo *) NULL)
-    status&=AppendValueToLinkedList(cache,configure_info);
+    (void) AppendValueToLinkedList(cache,configure_info);
   return(cache);
 }
 \f