1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

applied a small fix from Steve Hay Daniel

* xmlmemory.c: applied a small fix from Steve Hay
Daniel
This commit is contained in:
Daniel Veillard 2004-07-13 15:25:08 +00:00
parent 3794b9e84a
commit e15df587d6
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Tue Jul 13 17:24:13 CEST 2004 Daniel Veillard <daniel@veillard.com>
* xmlmemory.c: applied a small fix from Steve Hay
Tue Jul 13 23:02:19 HKT 2004 William Brack <wbrack@mmm.com.hk>
* xpath.c: Added code to in PREDICATE/FILTER handling to reset

View File

@ -805,12 +805,12 @@ xmlMemoryDump(void)
int
xmlInitMemory(void)
{
#ifdef HAVE_STDLIB_H
char *breakpoint;
#endif
#ifdef DEBUG_MEMORY
xmlGenericError(xmlGenericErrorContext,
"xmlInitMemory()\n");
#endif
#ifdef HAVE_STDLIB_H
char *breakpoint;
#endif
/*
This is really not good code (see Bug 130419). Suggestions for