mirror of
https://github.com/OpenTTD/OpenTTD
synced 2026-01-20 19:02:41 +01:00
Fix: Signature validation did not close its file. (#12479)
This commit is contained in:
committed by
Loïc Guilloux
parent
3425aeac85
commit
11e6d2e3d4
@@ -205,6 +205,7 @@ static bool _ValidateSignatureFile(const std::string &filename)
|
||||
|
||||
std::string text(filesize, '\0');
|
||||
size_t len = fread(text.data(), filesize, 1, f);
|
||||
FioFCloseFile(f);
|
||||
if (len != 1) {
|
||||
Debug(misc, 0, "Failed to validate signature: failed to read file: {}", filename);
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user