|
|
|
|
|
by umanwizard
1093 days ago
|
|
The core value proposition of rust is that it’s memory safe by default, and it’s possible to limit the set of code that needs to be manually checked for UB. This isn’t the case for C++, as any code anywhere can invoke undefined behavior. |
|
It isn't perfect, but does improve a lot the security baseline.