Prechádzať zdrojové kódy

Merge pull request #374 from Alanscut/20190625

Add a comment to the parameter count of the cJSON_CreateIntArray function
Alanscut 5 rokov pred
rodič
commit
709c3dcf32
1 zmenil súbory, kde vykonal 2 pridanie a 1 odobranie
  1. 2 1
      cJSON.h

+ 2 - 1
cJSON.h

@@ -208,7 +208,8 @@ CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string);
 CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child);
 CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child);
 
-/* These utilities create an Array of count items. */
+/* These utilities create an Array of count items.
+ * The parameter count cannot be greater than the number of elements in the number array, otherwise array access will be out of bounds.*/
 CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count);
 CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count);
 CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count);