You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The repro in #14 no longer compiles on current master but the following is basically equivalent:
use aeron_rs::concurrent::atomic_buffer::{AlignedBuffer,AtomicBuffer};fnmain(){AtomicBuffer::from_aligned(&AlignedBuffer{ptr:0xdeadbeefusizeas_,len:100}).get_bytes(0,0xcafebabeusizeas_,100);}
Segmentation fault (core dumped)
In general it is unsound for a safe API to result in UB.
The text was updated successfully, but these errors were encountered:
In general it is unsound for a safe API to result in UB.
I fully agree with that! :-)
Can you propose the solution? May be you could do the fix and present is as PR? That will be very helpful!
The repro in #14 no longer compiles on current master but the following is basically equivalent:
Segmentation fault (core dumped)
In general it is unsound for a safe API to result in UB.
The text was updated successfully, but these errors were encountered: