[Not really OT] Crowdstrike Analysis: It was a NULL pointer from the memory unsafe C++ language.
Walter Bright
newshound2 at digitalmars.com
Fri Jul 26 16:11:28 UTC 2024
On 7/26/2024 3:21 AM, Richard (Rikki) Andrew Cattermole wrote:
> If the MMU is throwing an exception something has gone terribly wrong elsewhere
> and having a programming language force you to check for null is a reasonable
> precaution against this.
```
assert(p != null); // throws an unrecoverable exception
```
Array bounds errors also throw an unrecoverable exception
More information about the Digitalmars-d
mailing list