From: SeokYeon Hwang Date: Sat, 20 Jun 2015 08:24:12 +0000 (+0900) Subject: emulator_option: fixed variable overwritten problem X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~356 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaac8e38b6c027ea1f791b6e2f30451d8e10104d;p=sdk%2Femulator%2Fqemu.git emulator_option: fixed variable overwritten problem Change-Id: I1cd39df5745690d3c0b3ab54cd5eec8ecfcee0f8 Signed-off-by: SeokYeon Hwang --- diff --git a/tizen/src/emulator_options.c b/tizen/src/emulator_options.c index 92d725a52b..19cd12dea1 100644 --- a/tizen/src/emulator_options.c +++ b/tizen/src/emulator_options.c @@ -298,9 +298,9 @@ bool load_conf(const char * const conf) { gchar **splitted = g_strsplit(token, "=", 2); if (splitted[0] && splitted[1]) { - // FIXME: we override previous value if already exist. + // FIXME: we don't override previous value if already exist. // We should warn to users. - set_variable(splitted[0], splitted[1], true); + set_variable(splitted[0], splitted[1], false); } g_strfreev(splitted);