Skip to content

Commit 8ed5355

Browse files
committed
fix #624: Use the C locale in number to string conversion
Resolves: #624
1 parent 9f26849 commit 8ed5355

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

src/scratch/value_functions.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,10 @@ extern "C"
382382
return ret;
383383
}
384384

385+
// snprintf() is locale-dependent
386+
std::string oldLocale = std::setlocale(LC_NUMERIC, nullptr);
387+
std::setlocale(LC_NUMERIC, "C");
388+
385389
const int maxlen = 26; // should be enough for any number
386390
char *buffer = (char *)malloc((maxlen + 1) * sizeof(char));
387391

@@ -429,6 +433,9 @@ extern "C"
429433
}
430434
}
431435

436+
// Restore old locale
437+
std::setlocale(LC_NUMERIC, oldLocale.c_str());
438+
432439
return buffer;
433440
}
434441

test/scratch_classes/value_test.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -1342,6 +1342,9 @@ TEST(ValueTest, ToBool)
13421342

13431343
TEST(ValueTest, ToString)
13441344
{
1345+
std::string oldLocale = std::setlocale(LC_NUMERIC, nullptr);
1346+
std::setlocale(LC_NUMERIC, "sk_SK.UTF-8");
1347+
13451348
std::vector<char *> cStrings;
13461349
Value v = 2147483647;
13471350
cStrings.push_back(value_toCString(&v.data()));
@@ -1614,6 +1617,8 @@ TEST(ValueTest, ToString)
16141617

16151618
for (char *s : cStrings)
16161619
free(s);
1620+
1621+
std::setlocale(LC_NUMERIC, oldLocale.c_str());
16171622
}
16181623

16191624
TEST(ValueTest, ToRgba)
@@ -2921,6 +2926,9 @@ TEST(ValueTest, DoubleIsInt)
29212926

29222927
TEST(ValueTest, DoubleToCString)
29232928
{
2929+
std::string oldLocale = std::setlocale(LC_NUMERIC, nullptr);
2930+
std::setlocale(LC_NUMERIC, "sk_SK.UTF-8");
2931+
29242932
char *ret;
29252933
ret = value_doubleToCString(0.0);
29262934
ASSERT_EQ(strcmp(ret, "0"), 0);
@@ -3021,6 +3029,8 @@ TEST(ValueTest, DoubleToCString)
30213029
ret = value_doubleToCString(std::numeric_limits<double>::quiet_NaN());
30223030
ASSERT_EQ(strcmp(ret, "NaN"), 0);
30233031
free(ret);
3032+
3033+
std::setlocale(LC_NUMERIC, oldLocale.c_str());
30243034
}
30253035

30263036
TEST(ValueTest, BoolToCString)

0 commit comments

Comments
 (0)