зеркало из https://github.com/mozilla/pjs.git
r=dougt, sr=bzbarsky Assert if we try to malloc zero in nsMemory
This commit is contained in:
Родитель
8023c1301e
Коммит
e09e5e0cf7
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче