aboutsummaryrefslogtreecommitdiffstats
path: root/xmlIO.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-09-05 11:33:25 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-09-05 11:33:25 +0000
commit3487c8d9bbf0c2d54effc1cd7566c2ececb18752 (patch)
tree1f5a032a6a8970c27cf0a3236088f56475cc3ba9 /xmlIO.c
parent19aa70245a694b3e8ae39da27a8c3deb8d32f405 (diff)
downloadandroid_external_libxml2-3487c8d9bbf0c2d54effc1cd7566c2ececb18752.tar.gz
android_external_libxml2-3487c8d9bbf0c2d54effc1cd7566c2ececb18752.tar.bz2
android_external_libxml2-3487c8d9bbf0c2d54effc1cd7566c2ececb18752.zip
get rid of all the perror() calls made in the library execution paths.
* DOCBparser.c HTMLparser.c c14n.c entities.c list.c parser.c parserInternals.c xmlIO.c: get rid of all the perror() calls made in the library execution paths. This should fix both #92059 and #92385 Daniel
Diffstat (limited to 'xmlIO.c')
-rw-r--r--xmlIO.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/xmlIO.c b/xmlIO.c
index 1c2a1226..3cd4c2ae 100644
--- a/xmlIO.c
+++ b/xmlIO.c
@@ -2158,7 +2158,6 @@ xmlParserInputBufferGrow(xmlParserInputBufferPtr in, int len) {
return(-1);
}
if (res < 0) {
- perror ("read error");
return(-1);
}
len = res;