mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fixed compilation warning changed xmlWarningMsg so ctxt->errNo is not set
* dict.c: fixed compilation warning * parser.c: changed xmlWarningMsg so ctxt->errNo is not set * xmllint.c: changed to return non-zero status if error on xinclude processing * xmlsave.c: minor deletion of a redundant condition statement
This commit is contained in:
parent
b6b36d37f2
commit
4e1c2db89e
@ -1,3 +1,11 @@
|
||||
Fri Feb 11 18:37:22 HKT 2005 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* dict.c: fixed compilation warning
|
||||
* parser.c: changed xmlWarningMsg so ctxt->errNo is not set
|
||||
* xmllint.c: changed to return non-zero status if error
|
||||
on xinclude processing
|
||||
* xmlsave.c: minor deletion of a redundant condition statement
|
||||
|
||||
Wed Feb 9 17:47:40 CET 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* tree.c: applied patch to xmlSetNsProp from Mike Hommey
|
||||
|
4
dict.c
4
dict.c
@ -82,13 +82,13 @@ static xmlRMutexPtr xmlDictMutex = NULL;
|
||||
static int xmlDictInitialized = 0;
|
||||
|
||||
/**
|
||||
* xmlInitializeCatalog:
|
||||
* xmlInitializeDict:
|
||||
*
|
||||
* Do the dictionary mutex initialization.
|
||||
* this function is not thread safe, initialization should
|
||||
* preferably be done once at startup
|
||||
*/
|
||||
static int xmlInitializeDict() {
|
||||
static int xmlInitializeDict(void) {
|
||||
if (xmlDictInitialized)
|
||||
return(1);
|
||||
|
||||
|
1
parser.c
1
parser.c
@ -410,7 +410,6 @@ xmlWarningMsg(xmlParserCtxtPtr ctxt, xmlParserErrors error,
|
||||
if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
|
||||
(ctxt->instate == XML_PARSER_EOF))
|
||||
return;
|
||||
ctxt->errNo = error;
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->initialized == XML_SAX2_MAGIC))
|
||||
schannel = ctxt->sax->serror;
|
||||
__xmlRaiseError(schannel,
|
||||
|
@ -1341,7 +1341,8 @@ static void parseAndPrintFile(char *filename, xmlParserCtxtPtr rectxt) {
|
||||
if ((timing) && (!repeat)) {
|
||||
startTimer();
|
||||
}
|
||||
xmlXIncludeProcessFlags(doc, options);
|
||||
if (xmlXIncludeProcessFlags(doc, options) < 0)
|
||||
progresult = XMLLINT_ERR_UNCLASS;
|
||||
if ((timing) && (!repeat)) {
|
||||
endTimer("Xinclude processing");
|
||||
}
|
||||
|
@ -670,9 +670,7 @@ xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
|
||||
}
|
||||
if (cur->type == XML_TEXT_NODE) {
|
||||
if (cur->content != NULL) {
|
||||
if ((cur->name == xmlStringText) ||
|
||||
(cur->name != xmlStringTextNoenc)) {
|
||||
|
||||
if (cur->name != xmlStringTextNoenc) {
|
||||
xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
|
||||
} else {
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user