mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 10:16:52 +08:00
less magic trick in fpga_compress for coverity
This commit is contained in:
parent
7d009a9ea7
commit
a5001de76c
1 changed files with 5 additions and 1 deletions
|
@ -275,11 +275,15 @@ static int bitparse_find_section(FILE *infile, char section_name, unsigned int *
|
||||||
/* Four byte length field */
|
/* Four byte length field */
|
||||||
current_length += fgetc(infile) << 24;
|
current_length += fgetc(infile) << 24;
|
||||||
current_length += fgetc(infile) << 16;
|
current_length += fgetc(infile) << 16;
|
||||||
numbytes += 2;
|
current_length += fgetc(infile) << 8;
|
||||||
|
current_length += fgetc(infile) << 0;
|
||||||
|
numbytes += 4;
|
||||||
|
break;
|
||||||
default: /* Fall through, two byte length field */
|
default: /* Fall through, two byte length field */
|
||||||
current_length += fgetc(infile) << 8;
|
current_length += fgetc(infile) << 8;
|
||||||
current_length += fgetc(infile) << 0;
|
current_length += fgetc(infile) << 0;
|
||||||
numbytes += 2;
|
numbytes += 2;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (current_name != 'e' && current_length > 255) {
|
if (current_name != 'e' && current_length > 255) {
|
||||||
|
|
Loading…
Reference in a new issue