Skip to content
Snippets Groups Projects
Commit 6c7bccae authored by Brian Carrier's avatar Brian Carrier
Browse files

Fix for 3406523 re: mactime sanity check on size from Joachim Metz

parent f1055392
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ New Features: ...@@ -19,6 +19,7 @@ New Features:
Bug Fixes: Bug Fixes:
- Added check to fatfs_open to compare first sectors of FAT if we used backup boot sector and verify it is FAT32. - Added check to fatfs_open to compare first sectors of FAT if we used backup boot sector and verify it is FAT32.
- More checks to make sure that FAT short names are valid ASCII - More checks to make sure that FAT short names are valid ASCII
- 3406523: Mactime size sanity check
---------------- VERSION 3.2.2 -------------- ---------------- VERSION 3.2.2 --------------
......
...@@ -300,7 +300,7 @@ sub read_body { ...@@ -300,7 +300,7 @@ sub read_body {
next unless ((defined $st_ino) && ($st_ino =~ /[\d-]+/)); next unless ((defined $st_ino) && ($st_ino =~ /[\d-]+/));
next unless ((defined $st_uid) && ($st_uid =~ /\d+/)); next unless ((defined $st_uid) && ($st_uid =~ /\d+/));
next unless ((defined $st_gid) && ($st_gid =~ /\d+/)); next unless ((defined $st_gid) && ($st_gid =~ /\d+/));
next unless ((defined $st_size) && ($st_gid =~ /\d+/)); next unless ((defined $st_size) && ($st_size =~ /\d+/));
next unless ((defined $st_mtime) && ($st_mtime =~ /\d+/)); next unless ((defined $st_mtime) && ($st_mtime =~ /\d+/));
next unless ((defined $st_atime) && ($st_atime =~ /\d+/)); next unless ((defined $st_atime) && ($st_atime =~ /\d+/));
next unless ((defined $st_ctime) && ($st_ctime =~ /\d+/)); next unless ((defined $st_ctime) && ($st_ctime =~ /\d+/));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment