Figured out the problem.
This is because of 4k disks. I won’t go into the specifics, but I can try to show the math that equates out exactly what was happening:.
I was taking the size, making it a multiple of 1024:
9637387 * 1024 = 9868684288
On a 512 block disk (normal sized from long ago) The math than goes:
9868684288 / 512 = 19274774
Then we align it as needed (no need to show that work here).
On a 4096 block disk (4k) the math was being presented as:
9868684288 / 4096 = 2409346.75
Now if you make that number an int, you can immediately see it EXACTLY equals the number sectors trying to be copied.
Take that 2409346 and multiple it by 512 and you get about 1.2 GB of disk.
I’ve taken correction action on this and hope this will no longer be present.
As always, please re-run the installer and this capture issue (which appears to me to be only related to 4k disks) should be fixed.