mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
fsize can't be zero
This commit is contained in:
parent
69ba2d6a5b
commit
0b455607a9
5 changed files with 9 additions and 9 deletions
|
@ -2076,7 +2076,7 @@ int CmdHF14AMfURestore(const char *Cmd) {
|
|||
fseek(f, 0, SEEK_END);
|
||||
long fsize = ftell(f);
|
||||
fseek(f, 0, SEEK_SET);
|
||||
if (fsize < 0) {
|
||||
if (fsize <= 0) {
|
||||
PrintAndLogEx(WARNING, "Error, when getting filesize");
|
||||
fclose(f);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue