|
|
|
|
|
by Etheryte
466 days ago
|
|
The whole point of this CVE is what do you do when the input you're parsing is so large that you run out of space before you can terminate. Tail recursion helps in the sense that the issue will happen later, but it isn't a fix when we're talking about arbitrary data like an XML parser. |
|
The point of tail recursion is that it can be converted into a loop instead of actually recursing.