You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ccan/json library uses locale-dependent C routines (strtod() and sprintf()) to deal with numbers. If the program uses a locale with a comma as a decimal separator, the library will truncate numbers on reading (strtod() will ignore . and everything after it) and create broken JSONs (numbers will have , as separator instead of . as required by the standard).
The text was updated successfully, but these errors were encountered:
ccan/json
library uses locale-dependent C routines (strtod()
andsprintf()
) to deal with numbers. If the program uses a locale with a comma as a decimal separator, the library will truncate numbers on reading (strtod()
will ignore.
and everything after it) and create broken JSONs (numbers will have,
as separator instead of.
as required by the standard).The text was updated successfully, but these errors were encountered: