diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-11-16 04:31:58 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-11-16 04:31:58 +0000 |
commit | 5ef3e9233ff0a8848acefb577ad301bf8bb3f3bf (patch) | |
tree | 3f37258db817ba9f6495e780a7d25ef61e468848 | |
parent | 6bb47a68823bb85fb4040b2c7c984e639498b82c (diff) | |
download | lcd4linux-5ef3e9233ff0a8848acefb577ad301bf8bb3f3bf.tar.gz |
small memory leak fixed (Thnaks to Ed and Valgrind)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1055 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r-- | widget_icon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widget_icon.c b/widget_icon.c index 2af2b1d..fe77b47 100644 --- a/widget_icon.c +++ b/widget_icon.c @@ -188,6 +188,7 @@ int widget_icon_quit(WIDGET * Self) WIDGET_ICON *Icon = Self->data; property_free(&Icon->speed); property_free(&Icon->visible); + property_free(&Icon->frame); if (Icon->bitmap) free(Icon->bitmap); free(Self->data); |