diff options
author | Tectu <joel@unormal.org> | 2012-06-26 13:58:41 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-26 13:58:41 +0200 |
commit | 9ae31c538923bfee4631547735c8ca6d9d8a05a7 (patch) | |
tree | 2b0354d4698451f38da47edcaf267d5877da6be1 /gui.c | |
parent | 6743cde23dc39204f972af24cde93806630bfaa2 (diff) | |
download | uGFX-9ae31c538923bfee4631547735c8ca6d9d8a05a7.tar.gz uGFX-9ae31c538923bfee4631547735c8ca6d9d8a05a7.tar.bz2 uGFX-9ae31c538923bfee4631547735c8ca6d9d8a05a7.zip |
free memory
Diffstat (limited to 'gui.c')
-rw-r--r-- | gui.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -130,6 +130,8 @@ uint8_t guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char * lcdDrawRectString(x0, y0, x1, y1, str, fontColor, buttonColor); + chHeapFree(newNode); + return 1; } |