summaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-12-16 11:52:12 -0500
committerTavian Barnes <tavianator@tavianator.com>2024-12-16 11:52:12 -0500
commitce378308af700657d9cba841939b2385b21accaa (patch)
tree1a9aa8d969ff0d3ac01821f40780d48d5c700120 /src/alloc.c
parent2c85bebb76627f6db99cb101d43bb26720f33854 (diff)
downloadbfs-ce378308af700657d9cba841939b2385b21accaa.tar.xz
sanity: Get rid of sanitize_ignore()
It's probably nicer to avoid evaluating expensive arguments when not sanitizing, rather than relying on the optimizer to clean them up.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index ef9f6ab..9ab9983 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -317,8 +317,8 @@ void *varena_realloc(struct varena *varena, void *ptr, size_t old_count, size_t
return NULL;
}
- size_t new_exact_size = varena_exact_size(varena, new_count);
- size_t old_exact_size = varena_exact_size(varena, old_count);
+ _maybe_unused size_t new_exact_size = varena_exact_size(varena, new_count);
+ _maybe_unused size_t old_exact_size = varena_exact_size(varena, old_count);
if (new_arena == old_arena) {
if (new_count < old_count) {