Przeglądaj źródła

Remove redundant test from cJSON_AddItemToArray

The test for whether "c" is null is redundant.  Since this is the else case of "(!c)", and the only way "c" is changed is by the instruction assigning it "c->next" on the condition here, simply verifying that "c->next" isn't null is sufficient.
Jonathan Fether 8 lat temu
rodzic
commit
9f00ff9a91
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      cJSON.c

+ 1 - 1
cJSON.c

@@ -1658,7 +1658,7 @@ void   cJSON_AddItemToArray(cJSON *array, cJSON *item)
     else
     {
         /* append to the end */
-        while (c && c->next)
+        while (c->next)
         {
             c = c->next;
         }