mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
blockchain_blackball: error out on fgets error
This commit is contained in:
parent
d743994086
commit
b1f05f589e
@ -898,7 +898,11 @@ static std::vector<std::pair<uint64_t, uint64_t>> load_outputs(const std::string
|
|||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
char s[256];
|
char s[256];
|
||||||
fgets(s, sizeof(s), f);
|
if (!fgets(s, sizeof(s), f))
|
||||||
|
{
|
||||||
|
MERROR("Error reading from " << filename << ": " << strerror(errno));
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (feof(f))
|
if (feof(f))
|
||||||
break;
|
break;
|
||||||
const size_t len = strlen(s);
|
const size_t len = strlen(s);
|
||||||
|
Loading…
Reference in New Issue
Block a user