pictureviewer: free formathandlers in destructor

This commit is contained in:
Stefan Seyfried
2013-04-14 18:42:20 +02:00
parent 6f92bba94c
commit 473f33e57f

View File

@@ -448,6 +448,12 @@ void CPictureViewer::Cleanup ()
free (m_CurrentPic_Buffer);
m_CurrentPic_Buffer = NULL;
}
CFormathandler *fh = fh_root;
while (fh) {
CFormathandler *tmp = fh->next;
free(fh);
fh = tmp;
}
}
void CPictureViewer::getSize(const char* name, int* width, int *height)