about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/afl-showmap.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c
index 5994101e..41a62108 100644
--- a/src/afl-showmap.c
+++ b/src/afl-showmap.c
@@ -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);