commit | 65f2ea29c6c98d7454d07385d4de4af884acfc3d | [log] [tgz] |
---|---|---|
author | Nico Huber <nico.huber@secunet.com> | Tue Feb 06 17:37:35 2024 +0100 |
committer | Nico Huber <nico.huber@secunet.com> | Tue Feb 06 17:37:38 2024 +0100 |
tree | 1405b3aef67db34ccc43646630d13dbf56211318 | |
parent | 26c363d5b1207acb12033d77e36c1e4510f601de [diff] [blame] |
iso9660: Fix volume descriptor start offset Volume descriptors start at 32KiB, which is 16(!) blocks.
diff --git a/src/filo-fs-iso9660.adb b/src/filo-fs-iso9660.adb index 03f1abb..e4bc3df 100644 --- a/src/filo-fs-iso9660.adb +++ b/src/filo-fs-iso9660.adb
@@ -61,7 +61,7 @@ Static : Mount_State renames State.Static; Volume_Descriptor : Buffer_Type (0 .. D_Ver); - Block : FSBlock := 32; + Block : FSBlock := 16; begin loop pragma Loop_Invariant (Block < 1024);