diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-04-01 20:22:03 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-04-01 20:22:03 +0200 |
commit | 29e7f76bf63dd6478d9422f441b2805481311267 (patch) | |
tree | af66cada477ca5efd9897b86526c10908f07bd45 /FICS | |
parent | 389ca5e5f1c9c19b36a907f8ca7e87f028afd2ba (diff) |
Added static assertions
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/gamedb.c | 10 |
1 files changed, 10 insertions, 0 deletions
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, |