Kaynağa Gözat

handle null pointers: cJSON_CreateIntArray

Max Bruckner 8 yıl önce
ebeveyn
işleme
010e31f2f2
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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;
     }