AIX bustage fix for checkin from Bug 192139.
r=peterv@propagandism.org git-svn-id: svn://10.0.0.236/trunk@166753 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1006,7 +1006,11 @@ nsExpatDriver::WillBuildModel(const CParserContext& aParserContext,
|
||||
NS_ENSURE_TRUE(mSink, NS_ERROR_FAILURE);
|
||||
|
||||
static const XML_Memory_Handling_Suite memsuite =
|
||||
{ PR_Malloc, PR_Realloc, PR_Free };
|
||||
{
|
||||
(void *(*)(size_t))PR_Malloc,
|
||||
(void *(*)(void *, size_t))PR_Realloc,
|
||||
PR_Free
|
||||
};
|
||||
|
||||
static const PRUnichar kExpatSeparator[] = { 0xFFFF, '\0' };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user