r=dougt, sr=bzbarsky
Assert if we try to malloc zero in nsMemory
This commit is contained in:
mkaply%us.ibm.com 2003-01-15 20:37:12 +00:00
Родитель 8023c1301e
Коммит e09e5e0cf7
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -315,6 +315,7 @@ reallocator(void* ptr, PRSize size, PRUint32& counter, PRUint32 max)
NS_IMETHODIMP_(void *)
nsMemoryImpl::Alloc(PRSize size)
{
NS_ASSERTION(size, "nsMemoryImpl::Alloc of 0");
void* result = MALLOC1(size);
if (! result) {
// Request an asynchronous flush