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/pugl_osx.m | |
parent | db28e6c8e3dc2d148ae14b2c7bf14b63c1237cb6 (diff) |
Fix memory leaks
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r-- | pugl/pugl_osx.m | 1 |
1 files changed, 1 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); } |