1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

fixed where xmlMemoryDump() should be called. fixed handling of {0}, \n,

* testRegexp.c: fixed where xmlMemoryDump() should be called.
* xmlregexp.c: fixed handling of {0}, \n, \r and \t, two bugs
  affecting NIST regression tests
Daniel
This commit is contained in:
Daniel Veillard
2005-07-14 12:58:49 +00:00
parent 9202b674b5
commit 99c394d9c5
3 changed files with 39 additions and 4 deletions

View File

@@ -140,12 +140,11 @@ int main(int argc, char **argv) {
}
}
}
xmlMemoryDump();
if (comp != NULL)
xmlRegFreeRegexp(comp);
}
xmlCleanupParser();
/* xmlMemoryDump(); */
xmlMemoryDump();
return(0);
}