1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-07-21 16:14:14 -04:00

Assume MOD_POSIX_CURRENCY_SYMBOL contains only ASCII characters

The GNU library now has "C.UTF-8" as a locale (which is NOT a single-byte
locale!), but we assume the currency symbol in MOD_POSIX_CURRENCY_SYMBOL
contains only ASCII characters.
This commit is contained in:
John Zaitseff 2011-08-16 20:55:42 +10:00
parent d20cc2b5ec
commit bf76fa312c

View File

@ -345,9 +345,9 @@ ssize_t l_strfmon (char *restrict s, size_t maxsize,
if (strstr(format, "!") == NULL) {
/* Insert lconvinfo.currency_symbol to s.
NB: add_currecy_symbol == true assumes POSIX locale:
single-byte strings are in effect, so strlen(), etc, work
correctly. */
NB: add_currecy_symbol == true assumes a POSIX locale and
that MOD_POSIX_CURRENCY_SYMBOL contains only ASCII-safe
characters that work with strlen(), etc. */
const char *sym = lconvinfo.currency_symbol;
int symlen = strlen(sym);
char *p;