0x0@lemmy.zip to Programmer Humor@programming.dev · 22 天前race conditionslemmy.zipimagemessage-square86linkfedilinkarrow-up1872arrow-down125
arrow-up1847arrow-down1imagerace conditionslemmy.zip0x0@lemmy.zip to Programmer Humor@programming.dev · 22 天前message-square86linkfedilink
minus-squarejumping_redditor@sh.itjust.workslinkfedilinkarrow-up0·21 天前you can still segfault in rust iirc
minus-squarejenesaisquoi@feddit.orglinkfedilinkEnglisharrow-up1·21 天前Not in safe Rust. Only if you explicitly tell the compiler “I got this, don’t worry” but then fuck up.
minus-squarejumping_redditor@sh.itjust.workslinkfedilinkarrow-up0·21 天前https://github.com/Speykious/cve-rs
minus-squarejumping_redditor@sh.itjust.workslinkfedilinkarrow-up0·21 天前I guess they fixed the weirdness involving calling main later in the program
minus-squareEphera@lemmy.mllinkfedilinkEnglisharrow-up1·20 天前As in, you call main() recursively? Don’t think, I’ve ever tried that in any language…
you can still segfault in rust iirc
Not in safe Rust. Only if you explicitly tell the compiler “I got this, don’t worry” but then fuck up.
https://github.com/Speykious/cve-rs
I guess they fixed the weirdness involving calling main later in the program
As in, you call
main()
recursively? Don’t think, I’ve ever tried that in any language…