mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-06-02 02:04:20 +03:00
Fix stack corruption and uninitialized var warning
Stack corruption happens in x64 bit This resolves #347.
This commit is contained in:
parent
0e1d5c25c6
commit
33184bf698
2 changed files with 8 additions and 7 deletions
|
|
@ -2423,7 +2423,7 @@ arena_malloc_large(tsd_t *tsd, arena_t *arena, szind_t binind, bool zero)
|
|||
uintptr_t random_offset;
|
||||
arena_run_t *run;
|
||||
arena_chunk_map_misc_t *miscelm;
|
||||
UNUSED bool idump;
|
||||
UNUSED bool idump JEMALLOC_CC_SILENCE_INIT(false);
|
||||
|
||||
/* Large allocation. */
|
||||
usize = index2size(binind);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue