Home | History | Annotate | Download | only in lib
History log of /src/external/bsd/tre/lib/Makefile
RevisionDateAuthorComments
 1.6  14-Aug-2023  mrg apply -Wno-error for GCC 12.

this code seems broken. hash_table_del() is called on a ptr that was
either just freed (realloc() case) or will be freed (xfree_impl() case),
but in both cases hash_table_del() will free() the same address. for
the realloc() case, as it's after free(), it's UB. for the xfree_impl()
case, it can be solved by not free()ing here.
 1.5  03-Aug-2023  rin Revert CC_WNO_USE_AFTER_FREE from Makefile's (thanks uwe@)
 1.4  03-Aug-2023  rin Sprinkle CC_WNO_USE_AFTER_FREE for GCC 12

All of them are blamed for idiom equivalent to:
newbuf = realloc(buf, size);
p = newbuf + (p - buf);
 1.3  21-Nov-2017  rin Bump WARNS to 5 (via ../Makefile.inc).
Remove unnecessary -Wno-stack-protector flag.
 1.2  06-Nov-2011  tron branches: 1.2.2;
Fix build with stack smash protection enabled.
 1.1  05-Nov-2011  christos make this work:
- split alloca stuff in a separate file
- fix size_t/int/long inconsistencies
- fix weak alias stuff
- make paths consistent
- fix config files
- use switch instead of if/then/elseif...
- fix Makefiles
 1.2.2.2  10-Nov-2011  yamt sync with head
 1.2.2.1  06-Nov-2011  yamt file Makefile was added on branch yamt-pagecache on 2011-11-10 14:31:25 +0000

RSS XML Feed