aboutsummaryrefslogtreecommitdiff
path: root/malloc/malloc.c
AgeCommit message (Expand)AuthorFilesLines
2019-05-17Small tcache improvementsWilco Dijkstra1-8/+6
2019-05-10Fix tcache count maximum (BZ #24531)Wilco Dijkstra1-2/+7
2019-04-18malloc: make malloc fail with requests larger than PTRDIFF_MAX (BZ#23741)Adhemerval Zanella1-64/+48
2019-03-14malloc: Check for large bin list corruption when inserting unsorted chunkAdam Maris1-0/+4
2019-02-06Avoid "inline" after return type in function definitions.Joseph Myers1-22/+11
2019-02-04Fix assertion in malloc.c:tcache_get.Joseph Myers1-1/+1
2019-01-18malloc: Revert fastbins to old-style atomicsFlorian Weimer1-96/+70
2019-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2018-12-31malloc: Always call memcpy in _int_realloc [BZ #24027]Florian Weimer1-42/+1
2018-12-21malloc: Check the alignment of mmapped chunks before unmapping.Istvan Kurucsai1-1/+4
2018-12-20malloc: Add more integrity checks to mremap_chunk.Istvan Kurucsai1-3/+9
2018-11-26malloc: tcache: Validate tc_idx before checking for double-frees [BZ #23907]Florian Weimer1-25/+25
2018-11-20malloc: tcache double free checkDJ Delorie1-0/+28
2018-11-13malloc: Use current (C11-style) atomics for fastbin accessFlorian Weimer1-70/+96
2018-11-12malloc: Convert the unlink macro to the unlink_chunk functionFlorian Weimer1-45/+47
2018-08-20malloc: Add ChangeLog for accidentally committed changeFlorian Weimer1-1/+1
2018-08-17malloc: Additional checks for unsorted bin integrity I.Istvan Kurucsai1-4/+15
2018-08-16malloc: Mitigate null-byte overflow attacksMoritz Eckert1-0/+4
2018-08-16malloc: Verify size of top chunk.Pochang Chen1-0/+3
2018-06-29malloc: Update heap dumping/undumping comments [BZ #23351]Florian Weimer1-16/+0
2018-03-14malloc: harden removal from unsorted listFrancois Goichon1-0/+2
2018-03-09malloc: Revert sense of prev_inuse in commentsFlorian Weimer1-3/+3
2018-02-21Mechanically remove _IO_ name aliases for types and constants.Zack Weinberg1-3/+3
2018-02-10[BZ #22830] malloc_stats: restore cancellation for stderr correctly.Zack Weinberg1-1/+1
2018-01-29malloc: Use assert.h's assert macroSamuel Thibault1-7/+4
2018-01-18Fix integer overflows in internal memalign and malloc functions [BZ #22343]Arjun Shankar1-8/+22
2018-01-12malloc: Ensure that the consolidated fast chunk has a sane size.Istvan Kurucsai1-0/+6
2018-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers1-1/+1
2017-11-30Fix integer overflow in malloc when tcache is enabled [BZ #22375]Arjun Shankar1-1/+2
2017-11-23malloc: Call tcache destructor in arena_thread_freeresFlorian Weimer1-7/+16
2017-11-15malloc: Account for all heaps in an arena in malloc_info [BZ #22439]Florian Weimer1-4/+13
2017-11-15malloc: Add missing arena lock in malloc_info [BZ #22408]Florian Weimer1-4/+12
2017-10-24Add single-threaded path to _int_mallocWilco Dijkstra1-25/+38
2017-10-24Add single-threaded path to malloc/realloc/calloc/memallocWilco Dijkstra1-9/+41
2017-10-20Fix build issue with SINGLE_THREAD_PWilco Dijkstra1-0/+3
2017-10-20Add single-threaded path to _int_freeWilco Dijkstra1-14/+29
2017-10-19Fix deadlock in _int_free consistency checkWilco Dijkstra1-9/+12
2017-10-18Fix build failure on tilepro due to unsupported atomicsWilco Dijkstra1-1/+2
2017-10-17Improve malloc initialization sequenceWilco Dijkstra1-109/+88
2017-10-17Use relaxed atomics for malloc have_fastchunksWilco Dijkstra1-32/+20
2017-10-17Inline tcache functionsWilco Dijkstra1-2/+2
2017-10-06malloc: Fix tcache leak after thread destruction [BZ #22111]Carlos O'Donell1-3/+5
2017-08-31malloc: Remove the internal_function attributeFlorian Weimer1-13/+4
2017-08-31malloc: Resolve compilation failure in NDEBUG modeFlorian Weimer1-18/+7
2017-08-31malloc: Change top_check return type to voidFlorian Weimer1-1/+1
2017-08-30malloc: Remove corrupt arena flagFlorian Weimer1-13/+0
2017-08-30malloc: Remove check_action variable [BZ #21754]Florian Weimer1-122/+30
2017-08-30malloc: Abort on heap corruption, without a backtrace [BZ #21754]Florian Weimer1-19/+4
2017-08-10malloc: Avoid optimizer warning with GCC 7 and -O3Florian Weimer1-4/+16
2017-07-11Avoid backtrace from __stack_chk_fail [BZ #12189]H.J. Lu1-2/+4