• R
    harden realloc/free to detect simple overflows · 8389520e
    Rich Felker 提交于
    the sizes in the header and footer for a chunk should always match. if
    they don't, the program has definitely invoked undefined behavior, and
    the most likely cause is a simple overflow, either of a buffer in the
    block being freed or the one just below it.
    
    crashing here should not only improve security of buggy programs, but
    also aid in debugging, since the crash happens in a context where you
    have a pointer to the likely-overflowed buffer.
    8389520e
malloc.c 11.7 KB