|
|
|
|
|
by dmkolobov
543 days ago
|
|
The consequences of use-after-free are different for the two. In rust it is a logic error, which leads to data corruption or program panics within your application. In C it leads to data corruption and is an attack vector for the entire machine. And yes, while Rust itself doesn’t help you with this type of error, there are plenty of Rust libraries which do. |
|