diff options
| author | Toon Claes <toon@iotcl.com> | 2025-12-10 14:13:01 +0100 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-12-11 14:44:43 +0900 |
| commit | a67b902c94a2f33275a3947a8bcdab03f64ae75e (patch) | |
| tree | c5e00364a71a55934e1d2c13abf31a7474e5478d /hashmap.c | |
| parent | af0ed97e1031f2709dbd4fc4f40c4ded711acd49 (diff) | |
| download | git-a67b902c94a2f33275a3947a8bcdab03f64ae75e.tar.xz | |
git-compat-util: introduce MEMZERO_ARRAY() macro
Introduce a new macro MEMZERO_ARRAY() that zeroes the memory allocated
by ALLOC_ARRAY() and friends. And add coccinelle rule to enforce the use
of this macro.
Signed-off-by: Toon Claes <toon@iotcl.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'hashmap.c')
| -rw-r--r-- | hashmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -194,7 +194,7 @@ void hashmap_partial_clear_(struct hashmap *map, ssize_t entry_offset) return; if (entry_offset >= 0) /* called by hashmap_clear_entries */ free_individual_entries(map, entry_offset); - memset(map->table, 0, map->tablesize * sizeof(struct hashmap_entry *)); + MEMZERO_ARRAY(map->table, map->tablesize); map->shrink_at = 0; map->private_size = 0; } |
