diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-05-07 22:04:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-05-07 22:04:36 +0000 |
commit | fc08075dc61787269743a1abb8ff8221868c3210 (patch) | |
tree | 3f30336e48d8cfde89932c00f2b3884bf70d478f /iconv/gconv_simple.c | |
parent | 1336419e465c180c938652fadc2aa0b487a6e887 (diff) | |
download | glibc-fc08075dc61787269743a1abb8ff8221868c3210.tar glibc-fc08075dc61787269743a1abb8ff8221868c3210.tar.gz glibc-fc08075dc61787269743a1abb8ff8221868c3210.tar.bz2 glibc-fc08075dc61787269743a1abb8ff8221868c3210.zip |
Update.
(ucs4_internal_loop): Likewise.
(ucs4_internal_loop_unaligned): Likewise.
(internal_ucs4le_loop): Likewise.
(internal_ucs4le_loop_unaligned): Likewise.
(ucs4le_internal_loop): Likewise.
(ucs4le_internal_loop_unaligned): Likewise.
Diffstat (limited to 'iconv/gconv_simple.c')
-rw-r--r-- | iconv/gconv_simple.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c index caee6f36f9..4010a6b326 100644 --- a/iconv/gconv_simple.c +++ b/iconv/gconv_simple.c @@ -234,10 +234,10 @@ ucs4_internal_loop (const unsigned char **inptrp, const unsigned char *inend, *outptrp = outptr; /* Determine the status. */ - if (*outptrp == outend) - result = __GCONV_FULL_OUTPUT; - else if (*inptrp == inend) + if (*inptrp == inend) result = __GCONV_EMPTY_INPUT; + else if (*outptrp == outend) + result = __GCONV_FULL_OUTPUT; else result = __GCONV_INCOMPLETE_INPUT; @@ -296,10 +296,10 @@ ucs4_internal_loop_unaligned (const unsigned char **inptrp, *outptrp = outptr; /* Determine the status. */ - if (*outptrp == outend) - result = __GCONV_FULL_OUTPUT; - else if (*inptrp == inend) + if (*inptrp == inend) result = __GCONV_EMPTY_INPUT; + else if (*outptrp == outend) + result = __GCONV_FULL_OUTPUT; else result = __GCONV_INCOMPLETE_INPUT; @@ -392,10 +392,10 @@ internal_ucs4le_loop (const unsigned char **inptrp, const unsigned char *inend, #endif /* Determine the status. */ - if (*outptrp == outend) - result = __GCONV_FULL_OUTPUT; - else if (*inptrp == inend) + if (*inptrp == inend) result = __GCONV_EMPTY_INPUT; + else if (*outptrp == outend) + result = __GCONV_FULL_OUTPUT; else result = __GCONV_INCOMPLETE_INPUT; @@ -438,10 +438,10 @@ internal_ucs4le_loop_unaligned (const unsigned char **inptrp, # endif /* Determine the status. */ - if (*outptrp == outend) - result = __GCONV_FULL_OUTPUT; - else if (*inptrp == inend) + if (*inptrp == inend) result = __GCONV_EMPTY_INPUT; + else if (*outptrp == outend) + result = __GCONV_FULL_OUTPUT; else result = __GCONV_INCOMPLETE_INPUT; @@ -531,10 +531,10 @@ ucs4le_internal_loop (const unsigned char **inptrp, const unsigned char *inend, *outptrp = outptr; /* Determine the status. */ - if (*outptrp == outend) - result = __GCONV_FULL_OUTPUT; - else if (*inptrp == inend) + if (*inptrp == inend) result = __GCONV_EMPTY_INPUT; + else if (*outptrp == outend) + result = __GCONV_FULL_OUTPUT; else result = __GCONV_INCOMPLETE_INPUT; @@ -583,10 +583,10 @@ ucs4le_internal_loop_unaligned (const unsigned char **inptrp, *outptrp = outptr; /* Determine the status. */ - if (*outptrp == outend) - result = __GCONV_FULL_OUTPUT; - else if (*inptrp == inend) + if (*inptrp == inend) result = __GCONV_EMPTY_INPUT; + else if (*outptrp == outend) + result = __GCONV_FULL_OUTPUT; else result = __GCONV_INCOMPLETE_INPUT; |