mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
error: Don't use initGenericErrorDefaultFunc
The code in xmlInitParser did only set the error handler if it was NULL which should never happen.
This commit is contained in:
parent
27c8ba6054
commit
a9669679f5
2
error.c
2
error.c
@ -81,6 +81,8 @@ xmlGenericErrorDefaultFunc(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...) {
|
||||
* initGenericErrorDefaultFunc:
|
||||
* @handler: the handler
|
||||
*
|
||||
* DEPRECATED: Use xmlSetGenericErrorFunc.
|
||||
*
|
||||
* Set or reset (if NULL) the default handler for generic errors
|
||||
* to the builtin error function.
|
||||
*/
|
||||
|
@ -864,6 +864,7 @@ typedef void (XMLCALL *xmlStructuredErrorFunc) (void *userData, xmlErrorPtr erro
|
||||
XMLPUBFUN void XMLCALL
|
||||
xmlSetGenericErrorFunc (void *ctx,
|
||||
xmlGenericErrorFunc handler);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN void XMLCALL
|
||||
initGenericErrorDefaultFunc (xmlGenericErrorFunc *handler);
|
||||
|
||||
|
3
parser.c
3
parser.c
@ -14725,9 +14725,6 @@ xmlInitParser(void) {
|
||||
#endif
|
||||
xmlInitThreads();
|
||||
xmlInitGlobals();
|
||||
if ((xmlGenericError == xmlGenericErrorDefaultFunc) ||
|
||||
(xmlGenericError == NULL))
|
||||
initGenericErrorDefaultFunc(NULL);
|
||||
xmlInitMemory();
|
||||
xmlInitializeDict();
|
||||
xmlInitCharEncodingHandlers();
|
||||
|
@ -2427,12 +2427,11 @@ ignoreGenericError(void *ctx ATTRIBUTE_UNUSED,
|
||||
|
||||
static void
|
||||
testXPath(const char *str, int xptr, int expr) {
|
||||
xmlGenericErrorFunc handler = ignoreGenericError;
|
||||
xmlXPathObjectPtr res;
|
||||
xmlXPathContextPtr ctxt;
|
||||
|
||||
/* Don't print generic errors to stderr. */
|
||||
initGenericErrorDefaultFunc(&handler);
|
||||
xmlSetGenericErrorFunc(NULL, ignoreGenericError);
|
||||
|
||||
nb_tests++;
|
||||
#if defined(LIBXML_XPTR_ENABLED)
|
||||
@ -2464,7 +2463,7 @@ testXPath(const char *str, int xptr, int expr) {
|
||||
xmlXPathFreeContext(ctxt);
|
||||
|
||||
/* Reset generic error handler. */
|
||||
initGenericErrorDefaultFunc(NULL);
|
||||
xmlSetGenericErrorFunc(NULL, NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user