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
When compiled, no warnings are issued and when run it prints "Main is usually a function". As I understand this code is just arbitrary bytes being interpreted as code since it has the main symbol. While unlikely to be seen in real code, this is still a way for any arbitrary (unsafe) code to be run without unsafe.
I would have expected at least a warning that a "special" symbol ("main", are there other important ones to consider?) was specified with #[no_mangle] and was not a function. Or maybe arbitrary bytes for "special" symbols must be in an unsafe block to try to avoid this.
The text was updated successfully, but these errors were encountered:
playpen
When compiled, no warnings are issued and when run it prints "Main is usually a function". As I understand this code is just arbitrary bytes being interpreted as code since it has the
main
symbol. While unlikely to be seen in real code, this is still a way for any arbitrary (unsafe) code to be run without unsafe.I would have expected at least a warning that a "special" symbol ("main", are there other important ones to consider?) was specified with
#[no_mangle]
and was not a function. Or maybe arbitrary bytes for "special" symbols must be in anunsafe
block to try to avoid this.The text was updated successfully, but these errors were encountered: