diff options
author | root <root@xena.domain.avtechpulse.com> | 2012-08-29 11:19:22 -0400 |
---|---|---|
committer | root <root@xena.domain.avtechpulse.com> | 2012-08-29 11:19:22 -0400 |
commit | 7c608618ce40421f1281bcdafd5616da7d1d7429 (patch) | |
tree | 4cd1bb117f6ffaa16bee12647a65e68346d694cd /error_utils.c | |
parent | facf818bfa54d1fc553cf06a0f22012ea033ace0 (diff) |
fix memory leak
Diffstat (limited to 'error_utils.c')
-rw-r--r-- | error_utils.c | 1 |
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); } |