From 6edc4c976ee8be230c8feca953a82109295fafc2 Mon Sep 17 00:00:00 2001 From: DoHyun Pyun Date: Thu, 3 May 2018 08:24:32 +0900 Subject: [PATCH] Fix the prevent issue Change-Id: I9829b7507ef7636a5f625a45150312ff2413b454 Signed-off-by: DoHyun Pyun --- map-agent/bluetooth_map_email.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map-agent/bluetooth_map_email.c b/map-agent/bluetooth_map_email.c index 0709816..745a93a 100644 --- a/map-agent/bluetooth_map_email.c +++ b/map-agent/bluetooth_map_email.c @@ -752,7 +752,7 @@ static char *__bt_prepare_email_bmseg(email_mail_data_t *mail_data) } rewind(body_file); - buf = (char *)g_malloc0(sizeof(char) * email_size); + buf = (char *)g_malloc0(sizeof(char) * (email_size + 1)); read_size = fread(buf, 1, email_size, body_file); fclose(body_file); DBG("MESSAGE: [%s]", buf); -- 2.7.4