diff options
Diffstat (limited to 'common/dlmalloc.c')
| -rw-r--r-- | common/dlmalloc.c | 6 | 
1 files changed, 0 insertions, 6 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c index f2080c64b..c645d7314 100644 --- a/common/dlmalloc.c +++ b/common/dlmalloc.c @@ -1647,9 +1647,7 @@ static void do_check_chunk(mchunkptr p)  static void do_check_chunk(p) mchunkptr p;  #endif  { -#if 0	/* causes warnings because assert() is off */    INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE; -#endif	/* 0 */    /* No checkable chunk is mmapped */    assert(!chunk_is_mmapped(p)); @@ -1671,9 +1669,7 @@ static void do_check_free_chunk(p) mchunkptr p;  #endif  {    INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE; -#if 0	/* causes warnings because assert() is off */    mchunkptr next = chunk_at_offset(p, sz); -#endif	/* 0 */    do_check_chunk(p); @@ -1737,10 +1733,8 @@ static void do_check_malloced_chunk(mchunkptr p, INTERNAL_SIZE_T s)  static void do_check_malloced_chunk(p, s) mchunkptr p; INTERNAL_SIZE_T s;  #endif  { -#if 0	/* causes warnings because assert() is off */    INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;    long room = sz - s; -#endif	/* 0 */    do_check_inuse_chunk(p);  |