aboutsummaryrefslogtreecommitdiff
path: root/xexamine.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2024-04-30 03:00:11 -0400
committerB. Watson <urchlay@slackware.uk>2024-04-30 03:00:11 -0400
commit3c4599d7202d685ab24935d1348ad9ab167fce02 (patch)
tree928461888b5b27f54bf314621538b045d9b2416c /xexamine.c
parentca5b5bda7477386f6050c1a65802c5a68dc2de55 (diff)
downloadbw-atari8-tools-3c4599d7202d685ab24935d1348ad9ab167fce02.tar.gz
xex.c: detect short reads.
Diffstat (limited to 'xexamine.c')
-rw-r--r--xexamine.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/xexamine.c b/xexamine.c
index 3c277e5..ec1e822 100644
--- a/xexamine.c
+++ b/xexamine.c
@@ -358,6 +358,11 @@ int main(int argc, char **argv) {
while(xex_fread_seg(&seg, f)) {
segcount++;
+ xex_check_seg(&seg);
+ if(xex_errno) {
+ xex_perror(filename);
+ }
+
crc = 0;
crc32(seg.object, seg.len, &crc);