pebble-examples/cards-example

Memory allocated never freed

Opened this issue · 0 comments

You malloc() the size of WeatherAppData in init() but never free this memory on app exit, you should call this line at the end of main_window_unload() :
free(data);