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
See sile-typesetter/sile#573. cff_dict.c parses real numbers using the strtod library function. However, when the locale is set to one where LC_NUMERIC sets the decimal point to something other than ., get_real fails because it is expecting the decimal point to be the period character.
We should fix this locally, probably by providing our own non-locale-aware strod, and also notify upstream.
The text was updated successfully, but these errors were encountered:
See sile-typesetter/sile#573.
cff_dict.c
parses real numbers using thestrtod
library function. However, when the locale is set to one where LC_NUMERIC sets the decimal point to something other than.
,get_real
fails because it is expecting the decimal point to be the period character.We should fix this locally, probably by providing our own non-locale-aware
strod
, and also notify upstream.The text was updated successfully, but these errors were encountered: