Bug 403830, trying to fix bustage

This commit is contained in:
Olli.Pettay%helsinki.fi 2007-12-15 09:59:00 +00:00
Родитель 830674a858
Коммит 5ae1e887a5
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);
}
}