bcf8ea25a7
The producer's write buffer arrives byte-aligned from an arbitrary scheme write; constructing a &[Event] slice directly over it is undefined behaviour (misaligned loads, hardware faults on strict- alignment targets). Copy the events into a properly aligned Vec<Event> via copy_nonoverlapping and drop the trailing partial event. (Change found as uncommitted work in the fork; committing to preserve it and unblock the clean-fork build gate.)