Open shufps opened 3 years ago
There is no reason at all to use malloc for a 30 Bytes buffer.
The implications of using malloc and free on microcontrollers is quite severe - a simple 32 byte array should be used instead.
Probably the other issue reporting a memory leak leads to the same problem.
There is no reason at all to use malloc for a 30 Bytes buffer.
The implications of using malloc and free on microcontrollers is quite severe - a simple 32 byte array should be used instead.
Probably the other issue reporting a memory leak leads to the same problem.