From c253c55ca6dfd7e8d171fc9627cfe7a2ae668527 Mon Sep 17 00:00:00 2001 From: Taylor Blau Date: Wed, 14 Jan 2026 14:54:48 -0500 Subject: [PATCH] git-compat-util.h: introduce `u32_add()` A future commit will want to add two 32-bit unsigned values together while checking for overflow. Introduce a variant of the u64_add() function for operating on 32-bit inputs. Signed-off-by: Taylor Blau Signed-off-by: Junio C Hamano --- git-compat-util.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/git-compat-util.h b/git-compat-util.h index b0673d1a45..db62a6f25c 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -641,6 +641,14 @@ static inline int cast_size_t_to_int(size_t a) return (int)a; } +static inline uint32_t u32_add(uint32_t a, uint32_t b) +{ + if (unsigned_add_overflows(a, b)) + die("uint32_t overflow: %"PRIuMAX" + %"PRIuMAX, + (uintmax_t)a, (uintmax_t)b); + return a + b; +} + static inline uint64_t u64_mult(uint64_t a, uint64_t b) { if (unsigned_mult_overflows(a, b))