mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
(from_euc_tw): Fix return value of TO_LOOP.
This commit is contained in:
parent
697119d670
commit
8e06652009
@ -1,5 +1,5 @@
|
|||||||
/* Mapping tables for EUC-TW handling.
|
/* Mapping tables for EUC-TW handling.
|
||||||
Copyright (C) 1998, 1999, 2000-2002 Free Software Foundation, Inc.
|
Copyright (C) 1998, 1999, 2000-2002, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
|
||||||
|
|
||||||
@ -143,7 +143,7 @@
|
|||||||
if (__builtin_expect (found, 1) == 0) \
|
if (__builtin_expect (found, 1) == 0) \
|
||||||
{ \
|
{ \
|
||||||
/* We ran out of space. */ \
|
/* We ran out of space. */ \
|
||||||
result = __GCONV_INCOMPLETE_INPUT; \
|
result = __GCONV_FULL_OUTPUT; \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
if (__builtin_expect (found, 1) != __UNKNOWN_10646_CHAR) \
|
if (__builtin_expect (found, 1) != __UNKNOWN_10646_CHAR) \
|
||||||
@ -160,7 +160,7 @@
|
|||||||
if (__builtin_expect (found, 1) == 0) \
|
if (__builtin_expect (found, 1) == 0) \
|
||||||
{ \
|
{ \
|
||||||
/* We ran out of space. */ \
|
/* We ran out of space. */ \
|
||||||
result = __GCONV_INCOMPLETE_INPUT; \
|
result = __GCONV_FULL_OUTPUT; \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
if (__builtin_expect (found, 0) == __UNKNOWN_10646_CHAR) \
|
if (__builtin_expect (found, 0) == __UNKNOWN_10646_CHAR) \
|
||||||
|
Loading…
Reference in New Issue
Block a user