aboutsummaryrefslogtreecommitdiffstats
path: root/encoding.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-11-20 13:28:31 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-11-20 13:28:31 +0000
commitd076a20ea6254753201004ec444ac38728197a2d (patch)
treeaf0af37acfb55e03410efbb2685ccaf8aa0551d6 /encoding.c
parent817e70b6ac0446d9abb6b832963c3473e71b640c (diff)
downloadandroid_external_libxml2-d076a20ea6254753201004ec444ac38728197a2d.tar.gz
android_external_libxml2-d076a20ea6254753201004ec444ac38728197a2d.tar.bz2
android_external_libxml2-d076a20ea6254753201004ec444ac38728197a2d.zip
fixed #99082 for xi:include encoding="..." support on text includes. added
* xinclude.c parserInternals.c encoding.c: fixed #99082 for xi:include encoding="..." support on text includes. * result/XInclude/tstencoding.xml test/XInclude/docs/tstencoding.xml test/XInclude/ents/isolatin.txt : added a specific regression test * python/generator.py python/libxml2class.txt: fixed the generator the new set of comments generated for doc/libxml2-api.xml were breaking the python generation. Daniel
Diffstat (limited to 'encoding.c')
-rw-r--r--encoding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/encoding.c b/encoding.c
index 2faa7254..ebb1eeca 100644
--- a/encoding.c
+++ b/encoding.c
@@ -2120,7 +2120,7 @@ xmlCharEncInFunc(xmlCharEncodingHandler * handler, xmlBufferPtr out,
*/
if (ret == -3)
ret = 0;
- return (ret);
+ return (written);
}
/**