diff options
author | Andreas Jaeger <aj@suse.de> | 2004-02-07 16:27:50 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2004-02-07 16:27:50 +0000 |
commit | 540e1b457050d4b355f3dba5f196e6cedc5ab69b (patch) | |
tree | 8691245ae7a75c9375a814c4854f17c822aa04f2 | |
parent | 33ed6903d39b23f1bb5dfd9793fc244244f7b241 (diff) | |
download | glibc-540e1b457050d4b355f3dba5f196e6cedc5ab69b.tar.gz glibc-540e1b457050d4b355f3dba5f196e6cedc5ab69b.tar.xz glibc-540e1b457050d4b355f3dba5f196e6cedc5ab69b.zip |
Fix last commit.
-rw-r--r-- | iconv/gconv_simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c index b8cc017d96..238e3295aa 100644 --- a/iconv/gconv_simple.c +++ b/iconv/gconv_simple.c @@ -561,7 +561,6 @@ internal_ucs4le_loop_single (struct __gconv_step *step, (*outptrp)[2] = state->__value.__wchb[1]; (*outptrp)[3] = state->__value.__wchb[0]; - *outptrp += 4; #else /* XXX unaligned */ (*outptrp)[0] = state->__value.__wchb[0]; @@ -570,6 +569,7 @@ internal_ucs4le_loop_single (struct __gconv_step *step, (*outptrp)[3] = state->__value.__wchb[3]; #endif + *outptrp += 4; /* Clear the state buffer. */ |