Index: branches/azimutz/Chazi/i386/libsaio/xml.c =================================================================== --- branches/azimutz/Chazi/i386/libsaio/xml.c (revision 1025) +++ branches/azimutz/Chazi/i386/libsaio/xml.c (revision 1026) @@ -570,11 +570,7 @@ if (gTagsFree == 0) { -#if USEMALLOC tag = (TagPtr)malloc(kTagsPerBlock * sizeof(Tag)); -#else - tag = (TagPtr)AllocateBootXMemory(kTagsPerBlock * sizeof(Tag)); -#endif if (tag == 0) return 0; // Initalize the new tags. @@ -651,11 +647,7 @@ // Add the new symbol. if (symbol == 0) { -#if USEMALLOC symbol = (SymbolPtr)malloc(sizeof(Symbol) + 1 + strlen(string)); -#else - symbol = (SymbolPtr)AllocateBootXMemory(sizeof(Symbol) + 1 + strlen(string)); -#endif if (symbol == 0) //return 0; stop("NULL symbol!");