projects
/
proxmark3-svn
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a616c0
)
FIX, Coverity, Argument can't be negative. CID# 212322, ftell(f) can …
author
marshmellow42
<marshmellowrf@gmail.com>
Sun, 14 Feb 2016 17:13:22 +0000
(12:13 -0500)
committer
marshmellow42
<marshmellowrf@gmail.com>
Sun, 14 Feb 2016 17:13:22 +0000
(12:13 -0500)
…be negative. Not allowed in malloc...
from iceman1001
client/cmdhficlass.c
patch
|
blob
|
blame
|
history
diff --git
a/client/cmdhficlass.c
b/client/cmdhficlass.c
index a169e827663f7fd0e13247d100784b31418c11c8..67bcbe766d476e78e116f1982a499fa0efd8aaab 100644
(file)
--- a/
client/cmdhficlass.c
+++ b/
client/cmdhficlass.c
@@
-285,6
+285,7
@@
int CmdHFiClassELoad(const char *Cmd) {
if (fsize < 0) {
PrintAndLog("Error, when getting filesize");
+ fclose(f);
return 1;
}
@@
-1506,6
+1507,12
@@
static int loadKeys(char *filename) {
long fsize = ftell(f);
fseek(f, 0, SEEK_SET);
+ if ( fsize < 0 ) {
+ PrintAndLog("Error, when getting filesize");
+ fclose(f);
+ return 1;
+ }
+
uint8_t *dump = malloc(fsize);
size_t bytes_read = fread(dump, 1, fsize, f);
Impressum
,
Datenschutz