mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-24 14:09:33 +01:00
Fix: Signature validation did not close its file. (#12479)
This commit is contained in:
parent
afd7878de0
commit
3316b27496
@ -205,6 +205,7 @@ static bool _ValidateSignatureFile(const std::string &filename)
|
|||||||
|
|
||||||
std::string text(filesize, '\0');
|
std::string text(filesize, '\0');
|
||||||
size_t len = fread(text.data(), filesize, 1, f);
|
size_t len = fread(text.data(), filesize, 1, f);
|
||||||
|
FioFCloseFile(f);
|
||||||
if (len != 1) {
|
if (len != 1) {
|
||||||
Debug(misc, 0, "Failed to validate signature: failed to read file: {}", filename);
|
Debug(misc, 0, "Failed to validate signature: failed to read file: {}", filename);
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user