From 29e7f76bf63dd6478d9422f441b2805481311267 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Tue, 1 Apr 2025 20:22:03 +0200 Subject: Added static assertions --- FICS/gamedb.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'FICS') diff --git a/FICS/gamedb.c b/FICS/gamedb.c index 85fcf40..6d108b0 100644 --- a/FICS/gamedb.c +++ b/FICS/gamedb.c @@ -1856,6 +1856,16 @@ journal_get_info(struct JGI_context *ctx, const char *fname) } while (!feof(fp)) { + _Static_assert(ARRAY_SIZE(ctx->WhiteName) > 20, + "'WhiteName' too small"); + _Static_assert(ARRAY_SIZE(ctx->BlackName) > 20, + "'BlackName' too small"); + + _Static_assert(ARRAY_SIZE(ctx->type) > 99, "'type' too small"); + _Static_assert(ARRAY_SIZE(ctx->eco) > 99, "'eco' too small"); + _Static_assert(ARRAY_SIZE(ctx->ending) > 99, "'ending' too small"); + _Static_assert(ARRAY_SIZE(ctx->result) > 99, "'result' too small"); + if (fscanf(fp, "%c %s %d %s %d %s %d %d %s %s %s\n", &count, ctx->WhiteName, &ctx->WhiteRating, -- cgit v1.2.3