mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 04:50:12 -07:00
coverity
This commit is contained in:
parent
95e8f0693e
commit
d6142296f3
1 changed files with 11 additions and 2 deletions
|
@ -412,11 +412,14 @@ static bool read_bench_data(statelist_t *test_candidates) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
free(path);
|
free(path);
|
||||||
bytes_read = fread(&nonces_to_bruteforce, 1, sizeof(nonces_to_bruteforce), benchfile);
|
|
||||||
if (bytes_read != sizeof(nonces_to_bruteforce)) {
|
// read 4 bytes of data ?
|
||||||
|
bytes_read = fread(&nonces_to_bruteforce, 1, sizeof(uint32_t), benchfile);
|
||||||
|
if (bytes_read != sizeof(uint32_t)) {
|
||||||
fclose(benchfile);
|
fclose(benchfile);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint32_t i = 0; i < nonces_to_bruteforce && i < 256; i++) {
|
for (uint32_t i = 0; i < nonces_to_bruteforce && i < 256; i++) {
|
||||||
bytes_read = fread(&bf_test_nonce[i], 1, sizeof(uint32_t), benchfile);
|
bytes_read = fread(&bf_test_nonce[i], 1, sizeof(uint32_t), benchfile);
|
||||||
if (bytes_read != sizeof(uint32_t)) {
|
if (bytes_read != sizeof(uint32_t)) {
|
||||||
|
@ -430,11 +433,13 @@ static bool read_bench_data(statelist_t *test_candidates) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bytes_read = fread(&num_states, 1, sizeof(uint32_t), benchfile);
|
bytes_read = fread(&num_states, 1, sizeof(uint32_t), benchfile);
|
||||||
if (bytes_read != sizeof(uint32_t)) {
|
if (bytes_read != sizeof(uint32_t)) {
|
||||||
fclose(benchfile);
|
fclose(benchfile);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (states_read = 0; states_read < MIN(num_states, TEST_BENCH_SIZE); states_read++) {
|
for (states_read = 0; states_read < MIN(num_states, TEST_BENCH_SIZE); states_read++) {
|
||||||
bytes_read = fread(test_candidates->states[EVEN_STATE] + states_read, 1, sizeof(uint32_t), benchfile);
|
bytes_read = fread(test_candidates->states[EVEN_STATE] + states_read, 1, sizeof(uint32_t), benchfile);
|
||||||
if (bytes_read != sizeof(uint32_t)) {
|
if (bytes_read != sizeof(uint32_t)) {
|
||||||
|
@ -442,9 +447,11 @@ static bool read_bench_data(statelist_t *test_candidates) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint32_t i = states_read; i < TEST_BENCH_SIZE; i++) {
|
for (uint32_t i = states_read; i < TEST_BENCH_SIZE; i++) {
|
||||||
test_candidates->states[EVEN_STATE][i] = test_candidates->states[EVEN_STATE][i - states_read];
|
test_candidates->states[EVEN_STATE][i] = test_candidates->states[EVEN_STATE][i - states_read];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint32_t i = states_read; i < num_states; i++) {
|
for (uint32_t i = states_read; i < num_states; i++) {
|
||||||
bytes_read = fread(&temp, 1, sizeof(uint32_t), benchfile);
|
bytes_read = fread(&temp, 1, sizeof(uint32_t), benchfile);
|
||||||
if (bytes_read != sizeof(uint32_t)) {
|
if (bytes_read != sizeof(uint32_t)) {
|
||||||
|
@ -452,6 +459,7 @@ static bool read_bench_data(statelist_t *test_candidates) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (states_read = 0; states_read < MIN(num_states, TEST_BENCH_SIZE); states_read++) {
|
for (states_read = 0; states_read < MIN(num_states, TEST_BENCH_SIZE); states_read++) {
|
||||||
bytes_read = fread(test_candidates->states[ODD_STATE] + states_read, 1, sizeof(uint32_t), benchfile);
|
bytes_read = fread(test_candidates->states[ODD_STATE] + states_read, 1, sizeof(uint32_t), benchfile);
|
||||||
if (bytes_read != sizeof(uint32_t)) {
|
if (bytes_read != sizeof(uint32_t)) {
|
||||||
|
@ -459,6 +467,7 @@ static bool read_bench_data(statelist_t *test_candidates) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint32_t i = states_read; i < TEST_BENCH_SIZE; i++) {
|
for (uint32_t i = states_read; i < TEST_BENCH_SIZE; i++) {
|
||||||
test_candidates->states[ODD_STATE][i] = test_candidates->states[ODD_STATE][i - states_read];
|
test_candidates->states[ODD_STATE][i] = test_candidates->states[ODD_STATE][i - states_read];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue