]> cvs.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdlf.c
fix: CoverityScan 133855 -out-of-bounds bits was used as index to cmd array.
[proxmark3-svn] / client / cmdlf.c
index 0453effe11126c5fb9cd3131897c43d1cfae3819..399adb72feaaab626f54a630a63e9a1884c74004 100644 (file)
@@ -123,12 +123,11 @@ int usage_lf_find(void){
 
 /* send a LF command before reading */
 int CmdLFCommandRead(const char *Cmd) {
-//     static char dummy[3] = {0x20,0x00,0x00};
+
        bool errors = FALSE;
        bool useHighFreq = FALSE;
        uint16_t one = 0, zero = 0;
        uint8_t cmdp = 0;
-       int strLength = 0;
        UsbCommand c = {CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K, {0,0,0}};
        
        while(param_getchar(Cmd, cmdp) != 0x00) {
@@ -136,7 +135,6 @@ int CmdLFCommandRead(const char *Cmd) {
                case 'h':
                        return usage_lf_cmdread();
                case 'H':
-                       //dummy[1]='h';
                        useHighFreq = TRUE;
                        cmdp++;
                        break;
@@ -144,7 +142,7 @@ int CmdLFCommandRead(const char *Cmd) {
                        cmdp++;
                        break;
                case 'c':
-                       strLength = param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes);
+                       param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes);
                        cmdp+=2;
                        break;
                case 'd':
Impressum, Datenschutz