Bug 403830, trying to fix bustage

This commit is contained in:
Olli.Pettay@helsinki.fi 2007-12-15 01:59:00 -08:00
Родитель e52650feb7
Коммит b8bce4679a
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -250,7 +250,8 @@ nsNodeUtils::LastRelease(nsINode* aNode)
delete aNode; // Calls destructor and sets size to *aNode.
size_t* sz = reinterpret_cast<size_t*>(aNode);
allocator->Free(*sz, static_cast<void*>(aNode));
NS_RELEASE(allocator);
nsDOMNodeAllocator* tmpAlloc = allocator;
NS_RELEASE(tmpAlloc);
}
}