Y
Hacker News
new
|
ask
|
show
|
jobs
by
andreidd
359 days ago
Why is Delphi/Object Pascal an MSL?
2 comments
cryptonector
358 days ago
Probably because it has counted byte strings and does bounds checks?
link
Ygg2
359 days ago
Why shouldn't it be?
link
andreidd
359 days ago
What's stopping you from UAF or OOB array access in Delphi?
link
sirwhinesalot
359 days ago
Delphi arrays are bounds checked. UAF is mitigated by having ref counted strings and such. Not fully safe but much safer than C and C++.
link
Ygg2
359 days ago
Usually a runtime or compile time check. At least for OOB in Ada.
https://www.jdoodle.com/ia/1IgW
link