From b882b028e362cc71a36ef9de77f104911d751579 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 9 Jun 2009 15:14:23 +0000 Subject: [PATCH] PR 10165 * winduni.c (wind_MultiByteToWideChar): Do not pass MB_PRECOMPOSED to MultiByteToWideChar when using the CP_UTF8 or CO_UTF7 types. --- binutils/ChangeLog | 6 ++++++ binutils/winduni.c | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index dc4f09b8b8..b0a9be5be3 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2009-06-09 Tom Bramer + + PR 10165 + * winduni.c (wind_MultiByteToWideChar): Do not pass MB_PRECOMPOSED + to MultiByteToWideChar when using the CP_UTF8 or CO_UTF7 types. + 2009-06-04 Alan Modra * strings.c (main): Delay parsing of decimal digits. diff --git a/binutils/winduni.c b/binutils/winduni.c index f811de7d73..8b39af1f59 100644 --- a/binutils/winduni.c +++ b/binutils/winduni.c @@ -661,7 +661,15 @@ wind_MultiByteToWideChar (rc_uint_type cp, const char *mb, rc_uint_type ret = 0; #if defined (_WIN32) || defined (__CYGWIN__) - ret = (rc_uint_type) MultiByteToWideChar (cp, MB_PRECOMPOSED, + rc_uint_type conv_flags = MB_PRECOMPOSED; + + /* MB_PRECOMPOSED is not allowed for UTF-7 or UTF-8. + MultiByteToWideChar will set the last error to + ERROR_INVALID_FLAGS if we do. */ + if (cp == CP_UTF8 || cp == CP_UTF7) + conv_flags = 0; + + ret = (rc_uint_type) MultiByteToWideChar (cp, conv_flags, mb, -1, u, u_len); /* Convert to bytes. */ ret *= sizeof (unichar); -- 2.34.1