From cb1df2f88c0d335e031ade0d52fd6a59528c622f Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Mon, 3 Dec 2018 23:07:36 +0100 Subject: [PATCH] README: Add note about needing to free print results in examples --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c6b788f..3b39c85 100644 --- a/README.md +++ b/README.md @@ -298,6 +298,7 @@ In this example we want to build and parse the following JSON: Let's build the above JSON and print it to a string: ```c //create a monitor with a list of supported resolutions +//NOTE: Returns a heap allocated string, you are required to free it after use. char* create_monitor(void) { const unsigned int resolution_numbers[3][2] = { @@ -373,6 +374,7 @@ end: Alternatively we can use the `cJSON_Add...ToObject` helper functions to make our lifes a little easier: ```c +//NOTE: Returns a heap allocated string, you are required to free it after use. char *create_monitor_with_helpers(void) { const unsigned int resolution_numbers[3][2] = {