Andrew Sweeney
Results
1
issues of
Andrew Sweeney
Hi Luca, You have a memory leak here: ```cJSON *json = cJSON_Parse(rcv_buffer);``` You need to call the following line to free it: ```cJSON_Delete(json);``` Reference document for the cJSON library is...