Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add max recursion depth #15

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Sep 16, 2024

  1. Add max recursion depth

    Signature:
    
    ```
    // MaxDepth will set the maximum recursion depth.
    // If the maximum depth is exceeded, ErrMaxDepth is returned.
    // Less than or 0 means no limit (default).
    func (d *Decoder) MaxDepth(n int) *Decoder {
    ```
    
    This can be used to prevent stack exhaustion on adversarial content.
    klauspost committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    33878ce View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. Configuration menu
    Copy the full SHA
    78d6d4f View commit details
    Browse the repository at this point in the history