diff options
author | David Robillard <d@drobilla.net> | 2015-11-12 11:50:40 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-11-12 11:50:40 -0500 |
commit | 0f48a696aff49450c03d5d302712aff773c169e9 (patch) | |
tree | 60ddc66aee82503202e95a30451e1668b3ab761b /pugl | |
parent | db28e6c8e3dc2d148ae14b2c7bf14b63c1237cb6 (diff) | |
download | pugl-0f48a696aff49450c03d5d302712aff773c169e9.tar.gz pugl-0f48a696aff49450c03d5d302712aff773c169e9.tar.bz2 pugl-0f48a696aff49450c03d5d302712aff773c169e9.zip |
Fix memory leaks
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/pugl_osx.m | 1 | ||||
-rw-r--r-- | pugl/pugl_win.cpp | 1 | ||||
-rw-r--r-- | pugl/pugl_x11.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index 1f31bdf..a585d88 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -515,6 +515,7 @@ puglDestroy(PuglView* view) if (view->impl->window) { [view->impl->window release]; } + free(view->windowClass); free(view->impl); free(view); } diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index 251dd9b..6d4219f 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -227,6 +227,7 @@ puglDestroy(PuglView* view) ReleaseDC(view->impl->hwnd, view->impl->hdc); DestroyWindow(view->impl->hwnd); UnregisterClass(view->impl->wc.lpszClassName, NULL); + free(view->windowClass); free(view->impl); free(view); } diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index 8167ece..bed1512 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -287,6 +287,7 @@ puglDestroy(PuglView* view) destroyContext(view); XDestroyWindow(view->impl->display, view->impl->win); XCloseDisplay(view->impl->display); + free(view->windowClass); free(view->impl); free(view); view = NULL; |