Chameleon

Chameleon Commit Details

Date:2011-06-18 11:15:26 (12 years 10 months ago)
Author:Azimutz
Commit:1026
Parents: 1025
Message:... r932...
Changes:
M/branches/azimutz/Chazi/i386/libsaio/xml.c

File differences

branches/azimutz/Chazi/i386/libsaio/xml.c
570570
571571
572572
573
574573
575
576
577
578574
579575
580576
......
651647
652648
653649
654
655650
656
657
658
659651
660652
661653
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.
// 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!");

Archive Download the corresponding diff file

Revision: 1026