git-compat-util: drop now-unused UNLEAK() macro
The `UNLEAK()` macro has been introduced with 0e5bba53af (add UNLEAK
annotation for reducing leak false positives, 2017-09-08) to help us
reduce the amount of reported memory leaks in cases we don't care about,
e.g. when exiting immediately afterwards. We have since removed all of
its users in favor of freeing the memory and thus don't need the macro
anymore.
Remove it.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
d91a9db33c
commit
52c7dbd036
15
usage.c
15
usage.c
@@ -350,18 +350,3 @@ void bug_fl(const char *file, int line, const char *fmt, ...)
|
||||
trace2_cmd_error_va(fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
#ifdef SUPPRESS_ANNOTATED_LEAKS
|
||||
void unleak_memory(const void *ptr, size_t len)
|
||||
{
|
||||
static struct suppressed_leak_root {
|
||||
struct suppressed_leak_root *next;
|
||||
char data[FLEX_ARRAY];
|
||||
} *suppressed_leaks;
|
||||
struct suppressed_leak_root *root;
|
||||
|
||||
FLEX_ALLOC_MEM(root, data, ptr, len);
|
||||
root->next = suppressed_leaks;
|
||||
suppressed_leaks = root;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user