mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
io: Don't set close callback in xmlParserInputBufferCreateFd
This commit is contained in:
parent
422ae4623a
commit
a4c2b7233f
@ -6488,7 +6488,6 @@ htmlReadFd(int fd, const char *url, const char *encoding, int options)
|
||||
htmlCtxtUseOptions(ctxt, options);
|
||||
|
||||
input = xmlNewInputFd(ctxt, url, fd, encoding, 0);
|
||||
input->buf->closecallback = NULL;
|
||||
|
||||
doc = htmlCtxtParseDocument(ctxt, input);
|
||||
|
||||
@ -6660,7 +6659,6 @@ htmlCtxtReadFd(htmlParserCtxtPtr ctxt, int fd,
|
||||
htmlCtxtUseOptions(ctxt, options);
|
||||
|
||||
input = xmlNewInputFd(ctxt, URL, fd, encoding, 0);
|
||||
input->buf->closecallback = NULL;
|
||||
|
||||
return(htmlCtxtParseDocument(ctxt, input));
|
||||
}
|
||||
|
2
parser.c
2
parser.c
@ -13872,7 +13872,6 @@ xmlReadFd(int fd, const char *URL, const char *encoding, int options)
|
||||
xmlCtxtUseOptions(ctxt, options);
|
||||
|
||||
input = xmlNewInputFd(ctxt, URL, fd, encoding, 0);
|
||||
input->buf->closecallback = NULL;
|
||||
|
||||
doc = xmlCtxtParseDocument(ctxt, input);
|
||||
|
||||
@ -14053,7 +14052,6 @@ xmlCtxtReadFd(xmlParserCtxtPtr ctxt, int fd,
|
||||
xmlCtxtUseOptions(ctxt, options);
|
||||
|
||||
input = xmlNewInputFd(ctxt, URL, fd, encoding, 0);
|
||||
input->buf->closecallback = NULL;
|
||||
|
||||
return(xmlCtxtParseDocument(ctxt, input));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user