Be consistent in memory allocations - use QuickZAlloc

This commit is contained in:
jpierre%netscape.com 2002-08-07 03:36:46 +00:00
Родитель 0fdbe46b29
Коммит 4607bbf866
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -536,7 +536,7 @@ static SECStatus DecodePointer(void* dest,
{
const SEC_ASN1Template* ptrTemplate =
SEC_ASN1GetSubtemplate (templateEntry, dest, PR_FALSE);
void* subdata = PORT_ArenaZAlloc(pool->arena, ptrTemplate->size);
void* subdata = QuickZAlloc(pool, ptrTemplate->size);
*(void**)((char*)dest + templateEntry->offset) = subdata;
if (subdata)
{