diff options
author | Stephen Kitt <skitt@debian.org> | 2016-05-27 10:11:04 +0200 |
---|---|---|
committer | Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com> | 2016-05-27 14:28:33 +0100 |
commit | 752fd7247bc223bcea35bd89cf56d1c08ead9ba6 (patch) | |
tree | b4a428f847a963738faaf24c8eff070fdb03a3a5 /tests/wctob.c | |
parent | 9f7d4fa477ff2a51d7c932b13d57ac22dc033105 (diff) | |
parent | a9a31b1de5776a3b08a82101a4fa711294f0dd1d (diff) |
Imported Debian patch 0.9.6+really0.9.3-0.1debian/0.9.6+really0.9.3-0.1
Diffstat (limited to 'tests/wctob.c')
-rw-r--r-- | tests/wctob.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/wctob.c b/tests/wctob.c index 3ff6c7b..1d1cc7b 100644 --- a/tests/wctob.c +++ b/tests/wctob.c @@ -1,5 +1,5 @@ /* Convert wide character to unibyte character. - Copyright (C) 2008, 2010-2015 Free Software Foundation, Inc. + Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2008. This program is free software: you can redistribute it and/or modify @@ -30,9 +30,8 @@ wctob (wint_t wc) if (!(MB_CUR_MAX <= sizeof (buf))) abort (); - /* Handle the case where WEOF is a value that does not fit in a wchar_t. */ - if (wc == (wchar_t)wc) - if (wctomb (buf, (wchar_t)wc) == 1) - return (unsigned char) buf[0]; - return EOF; + if (wctomb (buf, wc) == 1) + return (unsigned char) buf[0]; + else + return EOF; } |