mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
malloc: Change top_check return type to void
After commit ec2c1fcefb
,
(malloc: Abort on heap corruption, without a backtrace), the function
always returns 0.
This commit is contained in:
@ -1022,7 +1022,7 @@ static void* _mid_memalign(size_t, size_t, void *);
|
||||
static void malloc_printerr(const char *str) __attribute__ ((noreturn));
|
||||
|
||||
static void* internal_function mem2mem_check(void *p, size_t sz);
|
||||
static int internal_function top_check(void);
|
||||
static void top_check (void);
|
||||
static void internal_function munmap_chunk(mchunkptr p);
|
||||
#if HAVE_MREMAP
|
||||
static mchunkptr internal_function mremap_chunk(mchunkptr p, size_t new_size);
|
||||
|
Reference in New Issue
Block a user