aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-09-16 19:13:51 +0200
committerDavid Robillard <d@drobilla.net>2019-09-16 19:13:51 +0200
commit7bbbf3cea39fedc4a3373388afb354c178e6adad (patch)
treea59ec1bf5b2361f72014b0b2c8131c09d207373b /pugl/detail
parentfd68302be2387caf21871cc512c9ebb4db33ee30 (diff)
downloadpugl-7bbbf3cea39fedc4a3373388afb354c178e6adad.tar.gz
pugl-7bbbf3cea39fedc4a3373388afb354c178e6adad.tar.bz2
pugl-7bbbf3cea39fedc4a3373388afb354c178e6adad.zip
Fix memory leak
Diffstat (limited to 'pugl/detail')
-rw-r--r--pugl/detail/implementation.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pugl/detail/implementation.c b/pugl/detail/implementation.c
index 6375444..80a7a32 100644
--- a/pugl/detail/implementation.c
+++ b/pugl/detail/implementation.c
@@ -140,6 +140,7 @@ puglFreeView(PuglView* view)
}
}
+ free(view->title);
free(view->clipboard.data);
puglFreeViewInternals(view);
free(view);