mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 04:18:06 +00:00
add warning for afl-showmap partial read
This commit is contained in:
@ -386,7 +386,18 @@ static u32 read_file(u8 *in_file) {
|
||||
|
||||
}
|
||||
|
||||
in_len = st.st_size > MAX_FILE ? MAX_FILE : st.st_size;
|
||||
if (st.st_size > MAX_FILE) {
|
||||
|
||||
WARNF("Input file '%s' is too large, only reading %u bytes.", in_file,
|
||||
MAX_FILE);
|
||||
in_len = MAX_FILE;
|
||||
|
||||
} else {
|
||||
|
||||
in_len = st.st_size;
|
||||
|
||||
}
|
||||
|
||||
in_data = ck_alloc_nozero(in_len);
|
||||
|
||||
ck_read(fd, in_data, in_len, in_file);
|
||||
|
Reference in New Issue
Block a user