From 9d48138ed9c66421657f4f2517a7886f46dd295f Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sun, 17 Dec 2023 14:26:16 +0100 Subject: Replaced sprintf() with snprintf() --- FICS/movecheck.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FICS/movecheck.c b/FICS/movecheck.c index 453bdee..ea6569b 100644 --- a/FICS/movecheck.c +++ b/FICS/movecheck.c @@ -720,7 +720,8 @@ move_calculate(game_state_t *gs, move_t *mt, int promote) } // Replace this with an algabraic de-parser - sprintf(mt->algString, alg_unparse(gs, mt)); + snprintf(mt->algString, sizeof mt->algString, "%s", + alg_unparse(gs, mt)); fakeMove = *gs; execute_move(&fakeMove, mt, 0); // Calculates enPassant also -- cgit v1.2.3