MEM-003: SORTu64 clamps wrong chunk OOB read (abc/SORT.c)

Now
DONE

SORTu64's merge carves chunks of clen u64s and tries to clamp the trailing partial chunk, but the clamp targets the physical last array slot after the heap has reordered chunks by value, so the actual overrunning chunk survives unclamped and is later consumed, reading up to (clen-1)*8 bytes past the from/into buffer. The goal is to clamp each partial chunk at creation time, before it enters the heap.

Issues

Post-hoc clamp is applied to the wrong (heap-reordered) chunk.

Blockers

None.

Planned

Clamp at chunk construction, drop the unreliable post-hoc clamp.