bind9/tests/libtest
Ondřej Surý 855960ce46
Rename 'free' variable to 'nfree' to not clash with free()
The beauty and horrors of the C - the compiler properly detects variable
shadowing, but you can freely shadow a standard function 'free()' with
variable called 'free'.  And if you reference 'free()' just as 'free'
you get the function pointer which means you can do also pointer
arithmetics, so 'free > 0' is always valid even when you delete the
local variable.

Replace the local variables 'free' with a name that doesn't shadow the
'free()' function to prevent future hard to detect bugs.
2025-07-22 09:32:56 +02:00
..
dns.c simplify dns_name_fromtext() interface 2025-02-25 12:53:25 -08:00
isc.c Use regular reference counting macro for isc_nm_t structure 2025-07-09 21:22:48 +02:00
ns.c Improve efficiency of ns_client_t reset 2025-07-10 07:19:47 +02:00
qp.c Rename 'free' variable to 'nfree' to not clash with free() 2025-07-22 09:32:56 +02:00