Chameleon

Chameleon Commit Details

Date:2011-06-01 03:11:33 (12 years 10 months ago)
Author:Evan Lojewski
Commit:932
Parents: 931
Message:Removed calls nonexistant functions left over from BootX.
Changes:
M/trunk/i386/libsaio/xml.c

File differences

trunk/i386/libsaio/xml.c
909909
910910
911911
912
913912
914
915
916
917913
918914
919915
......
991987
992988
993989
994
995990
996
997
998
999991
1000992
1001993
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: 932