From fceb024c5c9c99ffce001111b14ed8a493b7972a Mon Sep 17 00:00:00 2001 From: MyoungJune Park Date: Mon, 11 Jul 2016 10:39:32 +0900 Subject: [PATCH] replace sprintf with snprintf for secure-coding Change-Id: If544db984dc696f608c4fc3c0902785b49f78e59 Signed-off-by: MyoungJune Park --- src/system_setting_platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system_setting_platform.c b/src/system_setting_platform.c index 1a4297e..135c2b1 100644 --- a/src/system_setting_platform.c +++ b/src/system_setting_platform.c @@ -1286,7 +1286,7 @@ int system_setting_set_locale_timezone(system_settings_key_e key, system_setting vconf_value = (char *)value; char tz_path[1024]; - sprintf(tz_path, "/usr/share/zoneinfo/%s", vconf_value); + snprintf(tz_path, 1024, "/usr/share/zoneinfo/%s", vconf_value); int is_load = _is_file_accessible(tz_path); if (is_load == 0) { -- 2.7.4