[apps] Fix Python assert crash on malloc free

Change-Id: I48f86422f7d6af5227e2556e6ef531dfad696da4
This commit is contained in:
Hugo Saint-Vignes
2020-08-27 16:29:43 +02:00
committed by Émilie Feral
parent d917b2e1c9
commit 70a628f2c8
3 changed files with 30 additions and 4 deletions

View File

@@ -46,6 +46,8 @@ uint32_t random();
// Decompress data
void decompress(const uint8_t * src, uint8_t * dst, int srcSize, int dstSize);
// Returns address to the first object that can be allocated on stack
void * stackStart();
// Tells whether the stack pointer is within acceptable bounds
bool stackSafe();