From 79f1aaef60e56eed2bdd1fffbed995992ef32692 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 9 Jul 2003 17:04:59 +0000 Subject: [PATCH] Was miscomputing end of string position for FcStrtod in locales with multibyte separators (2.2 branch) --- src/fcxml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fcxml.c b/src/fcxml.c index 657959c..ffde1b6 100644 --- a/src/fcxml.c +++ b/src/fcxml.c @@ -962,7 +962,7 @@ FcStrtod (char *s, char **end) buf_end = 0; v = strtod (buf, &buf_end); if (buf_end) - buf_end = s + (buf_end - buf); + buf_end = s + (buf_end - buf) + 1 - dlen; if (end) *end = buf_end; } -- 2.39.5