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

[xdata] Fix NPE in FillableForm #575

Merged
merged 1 commit into from
Jan 10, 2024

Commits on Jan 10, 2024

  1. [xdata] Fix NPE in FillableForm

    Calling write() in FillableForm's constructor causes a NPE because
    write() makes use of requiredFields which has not been set at this
    time. Furthermore, write() makes use of missingRequiredFields, which
    is also populated in that loop. Therefore, we have to delay the
    invocation of write() until requiredFields got set.
    
    Thanks to Dan Caseley for reporting this.
    
    Reported-by: Dan Caseley <[email protected]>
    Flowdalic committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    643d85c View commit details
    Browse the repository at this point in the history