On Fri, Jan 15, 2021 at 5:03 PM 'Evgenii Stepanov' via address-sanitizer <[email protected]> wrote: > > I think this "malloc.c" could be a problem. The way control jumped from > _dlerror_run to a non-ASan malloc is definitely not right.
I don't see malloc.c in the Bash sources on Savannah. However, there's one in a site called Fossies at https://fossies.org/dox/bash-5.1/malloc_8c_source.html#l00817 . Could this be the cause of the mapping problem on line 848: /* Silently reject too-large requests. XXX - can increase this if HAVE_MMAP */ if (nunits >= NBUCKETS) return ((PTR_T) NULL); Does Asan check for allocation failures and print a message? Jeff -- You received this message because you are subscribed to the Google Groups "address-sanitizer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/address-sanitizer/CAH8yC8ktf-Q3%3D4_Y6jYEMXAm87XsqiH%2B37qgHhCqyUPZSJvARQ%40mail.gmail.com.
