Changes between Initial Version and Version 1 of Ticket #6403, comment 10
- Timestamp:
- Jul 19, 2019, 1:21:19 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6403, comment 10
initial v1 1 1 I just hit another instance of this bug today on my system and ended up finding this bug sadly closed as wontfix. Mixing memalign and realloc hits some of the hardening measures implemented in Scudo (https://llvm.org/docs/ScudoHardenedAllocator.html). 2 2 3 {{{ 3 4 Scudo ERROR: allocation type mismatch when reallocating address 0x7c23c940d440 4 5 #0 0x00007e13cc19cbe0 in raise () … … 21 22 from /nix/store/1kxpdivgdaw0znrfwmknj6pgzhh3dc5y-ffmpeg-4.1.3/lib/libavcodec.so.58 22 23 ... 24 }}} 23 25 24 26 ff_h2645_extract_rbsp calls av_reallocp_array (realloc internally) on nal->skipped_bytes_pos which is allocated via av_malloc_array (posix_memalign internally).


