mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
libxml2 prerelease ?
- xmlIO cleanup, xmlRegisterInputCallbacks() for new input method - fixed xmlPrevSibling and xmlNextSibling - TODO: updated - doc/* : updated/regenerated Daniel
This commit is contained in:
7
parser.c
7
parser.c
@ -181,12 +181,7 @@ xmlParserInputGrow(xmlParserInputPtr in, int len) {
|
||||
|
||||
return(0);
|
||||
}
|
||||
if ((in->buf->httpIO != NULL) || (in->buf->ftpIO != NULL) ||
|
||||
(in->buf->file != NULL) ||
|
||||
#ifdef HAVE_ZLIB_H
|
||||
(in->buf->gzfile != NULL) ||
|
||||
#endif
|
||||
(in->buf->fd >= 0))
|
||||
if (in->buf->readcallback != NULL)
|
||||
ret = xmlParserInputBufferGrow(in->buf, len);
|
||||
else
|
||||
return(0);
|
||||
|
Reference in New Issue
Block a user