Hacker News new | ask | show | jobs
by wglb 3960 days ago
I must admit that I haven't heard of buffer overflows in emacs lisp.
1 comments

Right. When all of the language's data structures are garbage collected and the language has no pointer types, buffer overflows become much rarer.

There are a few array-lookup operations like AREF, but they do bounds checking (at run time, when the check is easier to get right).