1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-18 08:51:45 -08:00

Null is not an addr

Copied from Perforce
 Change: 15101
 ServerID: perforce.ravenbrook.com
This commit is contained in:
David Jones 1995-12-11 13:58:08 +00:00
parent c63a4d6394
commit 37a01e94c1

View file

@ -2,7 +2,7 @@
*
* NULL POOL
*
* $HopeName: MMsrc/!pooln.c(trunk.1)$
* $HopeName: MMsrc/!pooln.c(trunk.2)$
*
* Copyright(C) 1995 Harlequin Group, all rights reserved
*
@ -178,7 +178,7 @@ static void free_(Pool pool, Addr old, Size size)
{
AVER(ISVALID(Pool, pool));
AVER(pool->class == &PoolClassNStruct);
AVER(old != NULL);
AVER(old != (Addr)0);
AVER(size > 0);
#ifndef DEBUG_ASSERT
UNUSED(pool);