diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-21 23:21:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-21 23:21:55 +0000 |
commit | d5055a2070c1289ed919fab4fb2f4e7670faaf4a (patch) | |
tree | c922b7ae97d0c5083a284550127193a009df6da3 /iconv | |
parent | 2b6fb3dfb5c71b8f36e0ff8c7a8467fbdfa4aced (diff) | |
download | glibc-d5055a2070c1289ed919fab4fb2f4e7670faaf4a.zip glibc-d5055a2070c1289ed919fab4fb2f4e7670faaf4a.tar.gz glibc-d5055a2070c1289ed919fab4fb2f4e7670faaf4a.tar.bz2 |
Move initialization of winbuf and winbufend ahead.
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/gconv_trans.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/iconv/gconv_trans.c b/iconv/gconv_trans.c index 4d6e776..f065644 100644 --- a/iconv/gconv_trans.c +++ b/iconv/gconv_trans.c @@ -51,6 +51,10 @@ __gconv_transliterate (struct __gconv_step *step, uint_fast32_t high; uint32_t *default_missing; + /* The input buffer. There are actually 4-byte values. */ + winbuf = (uint32_t *) *inbufp; + winbufend = (uint32_t *) inbufend; + /* If there is no transliteration information in the locale don't do anything and return the error. */ size = _NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_TRANSLIT_HASH_SIZE); @@ -64,10 +68,6 @@ __gconv_transliterate (struct __gconv_step *step, to_idx = (uint32_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_TRANSLIT_TO_IDX); to_tbl = (uint32_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_TRANSLIT_TO_TBL); - /* The input buffer. There are actually 4-byte values. */ - winbuf = (uint32_t *) *inbufp; - winbufend = (uint32_t *) inbufend; - /* Test whether there is enough input. */ if (winbuf + 1 > winbufend) return (winbuf == winbufend |