mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-01 13:41:39 +03:00
preparing release 1.0.13 updated and rebuilt the docs fixed a possible
* configure.in libxslt/xsltwin32config.h: preparing release 1.0.13 * doc/*: updated and rebuilt the docs * python/libxslt.c: fixed a possible reentrancy problem Daniel
This commit is contained in:
@ -360,13 +360,17 @@ extern void initlibxml2mod(void);
|
||||
#endif
|
||||
|
||||
void initlibxsltmod(void) {
|
||||
static int initialized = 0;
|
||||
PyObject *m;
|
||||
|
||||
#ifdef MERGED_MODULES
|
||||
initlibxml2mod();
|
||||
#endif
|
||||
|
||||
if (initialized != 0)
|
||||
return;
|
||||
m = Py_InitModule("libxsltmod", libxsltMethods);
|
||||
initialized = 1;
|
||||
/* libxslt_xmlErrorInitialize(); */
|
||||
/*
|
||||
* Specific XSLT initializations
|
||||
@ -377,7 +381,6 @@ void initlibxsltmod(void) {
|
||||
xmlLoadExtDtdDefaultValue = XML_DETECT_IDS | XML_COMPLETE_ATTRS;
|
||||
/* xmlDefaultSAXHandlerInit(); */
|
||||
xmlDefaultSAXHandler.cdataBlock = NULL;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user