diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-07-06 08:59:50 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-07-06 08:59:50 +0000 |
commit | 95a9a1814f1a1ac07c316cc920c7493a86d5a09b (patch) | |
tree | e4ad60285505873265bdc20733d566f9581da061 | |
parent | 4b35a3494c53fe38532fc12cf1c57e1a3715ad0f (diff) | |
download | samba-95a9a1814f1a1ac07c316cc920c7493a86d5a09b.tar.gz samba-95a9a1814f1a1ac07c316cc920c7493a86d5a09b.tar.xz samba-95a9a1814f1a1ac07c316cc920c7493a86d5a09b.zip |
fixed a silly bug in the internal UTF8 implementation
-rw-r--r-- | source/lib/iconv.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/source/lib/iconv.c b/source/lib/iconv.c index 0c722e71dd4..e0988dc46a2 100644 --- a/source/lib/iconv.c +++ b/source/lib/iconv.c @@ -63,8 +63,22 @@ size_t smb_iconv(smb_iconv_t cd, #ifdef HAVE_NATIVE_ICONV if (cd->cd) { size_t ret; +#if 0 + char *p = *outbuf; + char *q = *inbuf; + int inlen=*inbytesleft, outlen=*outbytesleft; +#endif + ret = iconv(cd->cd, inbuf, inbytesleft, outbuf, outbytesleft); +#if 0 + if (strstr(p, "foo") || strstr(q, "foo")) { + DEBUG(0,("Foo 2!\n")); + dump_data(0, p, outlen - *outbytesleft); + dump_data(0, q, inlen - *inbytesleft); + } +#endif + /* if there was an error then reset the internal state, this ensures that we don't have a shift state remaining for character sets like SJIS */ @@ -445,7 +459,6 @@ static size_t utf8_push(char **inbuf, size_t *inbytesleft, } - (*outbuf)[0] = (*inbuf)[0]; (*inbytesleft) -= 2; (*outbytesleft) -= len; (*inbuf) += 2; |