Replies: 1 comment 3 replies
-
|
Hi @gfd2020! I don't remember either if I changed the recursive logic... Increasing the stack size is not too intuitive for users, I think it would be better to avoid the recursion if possible. If not, maybe catch the StackOverflowException and print a message telling users how to increase the stack size? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The initial implementation of the AD1 extractor is done recursively (I don't know if the modifications that @lfcnassif made changed this). That said, if the AD1 file has many files, a stack overflow may occur. This has already occurred in some cases, the solution was to increase the stack (100 MB is enough for all cases I tested).
The question is: document this and warn users about it or change the extractor logic to be iterative?
Beta Was this translation helpful? Give feedback.
All reactions