History log of /netbsd-src/external/bsd/tre/lib/Makefile (Results 1 – 6 of 6)
Revision Date Author Comments
# 0bd1afb8 14-Aug-2023 mrg <mrg@NetBSD.org>

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_tab

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.

show more ...


# 03675fce 03-Aug-2023 rin <rin@NetBSD.org>

Revert CC_WNO_USE_AFTER_FREE from Makefile's (thanks uwe@)


# 91f8ac6d 03-Aug-2023 rin <rin@NetBSD.org>

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);


# 17bc6163 21-Nov-2017 rin <rin@NetBSD.org>

Bump WARNS to 5 (via ../Makefile.inc).
Remove unnecessary -Wno-stack-protector flag.


# c461628c 06-Nov-2011 tron <tron@NetBSD.org>

Fix build with stack smash protection enabled.


# f2a3d147 05-Nov-2011 christos <christos@NetBSD.org>

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.

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

show more ...