We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10dfc50 commit 1dc5060Copy full SHA for 1dc5060
src/xml6_error.h
@@ -5,6 +5,6 @@
5
#include <libxml/xmlerror.h>
6
7
DLLEXPORT xmlChar*
8
-xml6_error_context_and_column( xmlErrorPtr, unsigned int*);
+xml6_error_context_and_column(xmlErrorPtr, unsigned int*);
9
10
#endif /* __XML6_ERROR_H */
src/xml6_parser_ctx.c
@@ -81,7 +81,7 @@ xml6_parser_ctx_close(xmlParserCtxtPtr self) {
81
xmlParserInputPtr input = self->inputTab[i];
82
xmlParserInputBufferPtr buf = input->buf;
83
if (buf != NULL) {
84
- if (buf->compressed != 0) {
+ if (buf->compressed > 0) {
85
compressed = 1;
86
}
87
xmlFreeParserInputBuffer(buf);
0 commit comments