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:
parent
c63a4d6394
commit
37a01e94c1
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue