2 ms·
You are talking about spatial safety. There are a few other types of memory safety: - temporal safety (e.g. no use after free) - initialization safety (no rea
by MForster 1y ago
You are talking about spatial safety. There are a few other types of memory safety:
- temporal safety (e.g. no use after free)
- initialization safety (no read of initialized memory)
- thread safety (no data races)
- type safety (accessing memory with the correct type)