mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-03 02:50:42 +02:00
* Merging revisions r43363 from trunk:
------------------------------------------------------------------------ r43363 | michael | 2019-11-02 15:35:18 +0100 (Sat, 02 Nov 2019) | 1 line * Fix bug ID #36248 ------------------------------------------------------------------------ git-svn-id: branches/fixes_3_2@43738 -
This commit is contained in:
parent
29550e5633
commit
7c51d49c61
@ -355,6 +355,11 @@ initialization
|
|||||||
LoadExternalVariables;
|
LoadExternalVariables;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
|
(*
|
||||||
|
* overloading the memory functions
|
||||||
|
*)
|
||||||
|
xmlMemSetup(@fpcxmlFree, @fpcxmlMalloc, @fpcxmlRealloc, @fpcxmlStrdup);
|
||||||
|
|
||||||
(*
|
(*
|
||||||
* this initialize the library and check potential ABI mismatches
|
* this initialize the library and check potential ABI mismatches
|
||||||
* between the version it was compiled for and the actual shared
|
* between the version it was compiled for and the actual shared
|
||||||
@ -362,11 +367,6 @@ initialization
|
|||||||
*)
|
*)
|
||||||
LIBXML_TEST_VERSION;
|
LIBXML_TEST_VERSION;
|
||||||
|
|
||||||
(*
|
|
||||||
* overloading the memory functions
|
|
||||||
*)
|
|
||||||
xmlMemSetup(@fpcxmlFree, @fpcxmlMalloc, @fpcxmlRealloc, @fpcxmlStrdup);
|
|
||||||
|
|
||||||
(*
|
(*
|
||||||
* overloading the error functions
|
* overloading the error functions
|
||||||
*)
|
*)
|
||||||
@ -377,11 +377,11 @@ finalization
|
|||||||
(*
|
(*
|
||||||
* Cleanup function for the XML library.
|
* Cleanup function for the XML library.
|
||||||
*)
|
*)
|
||||||
//xmlCleanupParser();
|
xmlCleanupParser();
|
||||||
|
|
||||||
(*
|
(*
|
||||||
* this is to debug memory for regression tests
|
* this is to debug memory for regression tests
|
||||||
*)
|
*)
|
||||||
xmlMemoryDump();
|
//xmlMemoryDump();
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user