Skip to content

Commit c352943

Browse files
authored
Update afl-analyze.c
To fix the issue with fields splitting in the afl-analysis.
1 parent 3af042d commit c352943

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/afl-analyze.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,8 @@ static void dump_hex(u32 len, u8 *b_data) {
513513
static void analyze() {
514514

515515
u32 i;
516-
u32 boring_len = 0, prev_xff = 0, prev_x01 = 0, prev_s10 = 0, prev_a10 = 0;
516+
u32 boring_len = 0;
517+
u64 prev_xff = 0, prev_x01 = 0, prev_s10 = 0, prev_a10 = 0;
517518

518519
u8 *b_data = ck_alloc(in_len + 1);
519520
u8 seq_byte = 0;

0 commit comments

Comments
 (0)