summaryrefslogtreecommitdiff
path: root/pugl/pugl_osx.m
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-11-12 11:50:40 -0500
committerDavid Robillard <d@drobilla.net>2015-11-12 11:50:40 -0500
commit0f48a696aff49450c03d5d302712aff773c169e9 (patch)
tree60ddc66aee82503202e95a30451e1668b3ab761b /pugl/pugl_osx.m
parentdb28e6c8e3dc2d148ae14b2c7bf14b63c1237cb6 (diff)
Fix memory leaks
Diffstat (limited to 'pugl/pugl_osx.m')
-rw-r--r--pugl/pugl_osx.m1
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);
}