-
-
Notifications
You must be signed in to change notification settings - Fork 904
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3bc429e
commit b1a74c2
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
diff --git a/parser.c b/parser.c | ||
index c6383f6e..12c760ec 100644 | ||
--- a/parser.c | ||
+++ b/parser.c | ||
@@ -14351,6 +14351,8 @@ xmlCleanupParser(void) { | ||
if (!xmlParserInitialized) | ||
return; | ||
|
||
+ fprintf(stderr, "MIKE: %s:%d: xmlCleanupParser cleaning up\n", __FILE__, __LINE__); | ||
+ | ||
xmlCleanupCharEncodingHandlers(); | ||
#ifdef LIBXML_CATALOG_ENABLED | ||
xmlCatalogCleanup(); | ||
diff --git a/threads.c b/threads.c | ||
index 56a917e6..13597649 100644 | ||
--- a/threads.c | ||
+++ b/threads.c | ||
@@ -477,6 +477,8 @@ xmlFreeGlobalState(void *state) | ||
{ | ||
xmlGlobalState *gs = (xmlGlobalState *) state; | ||
|
||
+ fprintf(stderr, "MIKE: %s:%d: xmlFreeGlobalState cleaning up\n", __FILE__, __LINE__); | ||
+ | ||
/* free any memory allocated in the thread's xmlLastError */ | ||
xmlResetError(&(gs->xmlLastError)); | ||
free(state); |