Memory allocated never freed
Opened this issue · 0 comments
RodgerLeblanc commented
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);