From: DoHyun Pyun Date: Wed, 2 May 2018 23:24:32 +0000 (+0900) Subject: Fix the prevent issue X-Git-Tag: accepted/tizen/unified/20180503.080726^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fconnectivity%2Fbluetooth-agent.git;a=commitdiff_plain;h=6edc4c976ee8be230c8feca953a82109295fafc2 Fix the prevent issue Change-Id: I9829b7507ef7636a5f625a45150312ff2413b454 Signed-off-by: DoHyun Pyun --- 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);