Parse mifare keys with colons correctly (Rainer Keller)
[librfid] / utils / common.c
index 08c7c1f..12c3bd4 100644 (file)
@@ -55,10 +55,8 @@ hexread(unsigned char *result, const unsigned char *in, unsigned int len)
        unsigned char *res = result;
 
        for (pos = in; pos-in <= len-2; pos+=2) {
-               if (*pos == ':') {
+               if (*pos == ':')
                        pos++;
-                       continue;
-               }
                dig1 = *pos;
                dig2 = *(pos+1);