1
0
mirror of https://github.com/git/git synced 2024-06-30 22:54:27 +00:00

reftable: use uint16_t to track restart interval

The restart interval can at most be `UINT16_MAX` as specified in the
technical documentation of the reftable format. Furthermore, it cannot
ever be negative. Regardless of that we use an `int` to track the
restart interval.

Change the type to use an `uint16_t` instead.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Patrick Steinhardt 2024-05-13 10:18:23 +02:00 committed by Junio C Hamano
parent 831b366c24
commit 8e9e136d61
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ struct block_writer {
uint32_t header_off;
/* How often to restart keys. */
int restart_interval;
uint16_t restart_interval;
int hash_size;
/* Offset of next uint8_t to write. */

View File

@ -28,7 +28,7 @@ struct reftable_write_options {
unsigned skip_index_objects : 1;
/* how often to write complete keys in each block. */
int restart_interval;
uint16_t restart_interval;
/* 4-byte identifier ("sha1", "s256") of the hash.
* Defaults to SHA1 if unset