]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdhficlass.c
More work on iclass
[proxmark3-svn] / client / cmdhficlass.c
index 9f6842b8109d6a52f820ea86daa3904034409d24..13ffc8ba750aecbbf598e0cc8cd306e3b83b2655 100644 (file)
@@ -69,7 +69,6 @@ int CmdHFiClassList(const char *Cmd)
        uint8_t *frame;
        uint32_t EndOfTransmissionTimestamp = 0;
 
-       uint8_t empty[4] = {0x44,0x44,0x44,0x44};
 
        for( i=0; i < 1900;)
        {
@@ -91,9 +90,8 @@ int CmdHFiClassList(const char *Cmd)
                        first_timestamp = timestamp;
                }
 
-               // Break and stick with current result if buffer
-               // was not completely full
-               if(memcmp(frame,empty,sizeof(empty))) break;
+               // Break and stick with current result if buffer was not completely full
+               if (frame[0] == 0x44 && frame[1] == 0x44 && frame[2] == 0x44 && frame[3] == 0x44) break;
 
                char line[1000] = "";
 
Impressum, Datenschutz