Explorar el Código

handle null pointers: cJSON_CreateIntArray

Max Bruckner hace 8 años
padre
commit
010e31f2f2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      cJSON.c

+ 1 - 1
cJSON.c

@@ -2171,7 +2171,7 @@ CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)
     cJSON *p = NULL;
     cJSON *a = NULL;
 
-    if (count < 0)
+    if ((count < 0) || (numbers == NULL))
     {
         return NULL;
     }