diff options
author | William M. Brack <wbrack@src.gnome.org> | 2004-02-10 12:48:57 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2004-02-10 12:48:57 +0000 |
commit | 030a7a1729163b52e7f107394a0289a3e03f6c12 (patch) | |
tree | 8e6a08cf4dc7027867438985d7fc2754146ec526 /encoding.c | |
parent | 537769a65fb49d9ce9effa1b7eb2f36d1f2de263 (diff) | |
download | libxml2-030a7a1729163b52e7f107394a0289a3e03f6c12.tar.gz |
applied patch supplied by Christophe Dubach to fix problem with
* encoding.c: applied patch supplied by Christophe Dubach
to fix problem with --with-minimum configuration
(bug 133773)
* nanoftp.c: fixed potential buffer overflow problem,
similar to fix just applied to nanohttp.c.
Diffstat (limited to 'encoding.c')
-rw-r--r-- | encoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -580,7 +580,6 @@ UTF8ToUTF16LE(unsigned char* outb, int *outlen, *inlen = processed - instart; return(0); } -#endif /* LIBXML_OUTPUT_ENABLED */ /** * UTF8ToUTF16: @@ -620,6 +619,7 @@ UTF8ToUTF16(unsigned char* outb, int *outlen, } return (UTF8ToUTF16LE(outb, outlen, in, inlen)); } +#endif /* LIBXML_OUTPUT_ENABLED */ /** * UTF16BEToUTF8: |