зеркало из https://github.com/mozilla/gecko-dev.git
Be consistent in memory allocations - use QuickZAlloc
This commit is contained in:
Родитель
0fdbe46b29
Коммит
4607bbf866
|
@ -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)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче