summaryrefslogtreecommitdiff
path: root/error_utils.c
diff options
context:
space:
mode:
authorroot <root@xena.domain.avtechpulse.com>2012-08-29 11:19:22 -0400
committerroot <root@xena.domain.avtechpulse.com>2012-08-29 11:19:22 -0400
commit7c608618ce40421f1281bcdafd5616da7d1d7429 (patch)
tree4cd1bb117f6ffaa16bee12647a65e68346d694cd /error_utils.c
parentfacf818bfa54d1fc553cf06a0f22012ea033ace0 (diff)
fix memory leak
Diffstat (limited to 'error_utils.c')
-rw-r--r--error_utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/error_utils.c b/error_utils.c
index 17bab15..a9cd2ae 100644
--- a/error_utils.c
+++ b/error_utils.c
@@ -137,6 +137,7 @@ void queue_error_and_display_on_LCD(int error_num)
gchar* response = NULL;
queue_error_and_get_text(&response, error_num);
LCD_display_extended_message (response, TRUE, TRUE);
+ g_free (response);
}