commit cead6da76287feeb96653941e2a102fcf4cfe811 from: Markus Uhlin date: Sun Apr 6 21:39:49 2025 UTC ReadV1GameFmt: fixed dead stores commit - 56cbbedea9e5efed97dc669c633d5d00677f6e67 commit + cead6da76287feeb96653941e2a102fcf4cfe811 blob - a21d61e73b5b3c4bb6cc044b1b46c6afbd692234 blob + 84cc912f404454176ee77ecdfbdad38962fe4a75 --- FICS/gamedb.c +++ FICS/gamedb.c @@ -1645,10 +1645,9 @@ RemoveHistGame(char *file, int maxlines) char Opponent[MAX_LOGIN_NAME + 1] = { '\0' }; char line[MAX_LINE_SIZE] = { '\0' }; int count = 0; - long int When, oppWhen; + long int When = 0, oppWhen = 0; _Static_assert(20 < ARRAY_SIZE(Opponent), "Not within bounds"); - When = oppWhen = 0; if ((fp = fopen(file, "r")) == NULL) { return;