X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/19d9a7b0cecac479befe6a381ab390eed3ed51cd..759c16b31f8dcec37458dd6a5973ce0cfce58015:/client/mifarehost.c diff --git a/client/mifarehost.c b/client/mifarehost.c index 14674b16..9676e6f7 100644 --- a/client/mifarehost.c +++ b/client/mifarehost.c @@ -326,7 +326,10 @@ int loadTraceCard(uint8_t *tuid) { blockNum = 0; while(!feof(f)){ memset(buf, 0, sizeof(buf)); - fgets(buf, sizeof(buf), f); + if (fgets(buf, sizeof(buf), f) == NULL) { + PrintAndLog("File reading error."); + return 2; + } if (strlen(buf) < 32){ if (feof(f)) break;