mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Fix possibly uninitilized variable handling.
If malloc errors are ignored (which say aren't by default and never should be) malloc in the old, slow form might use an uninitialized variable.
This commit is contained in:
@@ -4306,6 +4306,7 @@ _int_malloc(mstate av, size_t bytes)
|
||||
errstr = "malloc(): memory corruption (fast)";
|
||||
errout:
|
||||
malloc_printerr (check_action, errstr, chunk2mem (victim));
|
||||
return NULL;
|
||||
}
|
||||
#ifndef ATOMIC_FASTBINS
|
||||
*fb = victim->fd;
|
||||
|
Reference in New Issue
Block a user