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

PowerShell menu completion parser thread-safety fix #17221

Merged
merged 1 commit into from
May 9, 2024
Merged

PowerShell menu completion parser thread-safety fix #17221

merged 1 commit into from
May 9, 2024

Commits on May 8, 2024

  1. PowerShell menu completion parser thread-safety fix

    `Command::ParsePowerShellMenuComplete` can be called from multiple threads, but it uses a `static` `Json::CharReader`, which cannot safely parse data from multiple threads at the same time.
    Without `static` every function call will use a separate `CharReader`.
    krzysdz committed May 8, 2024
    Configuration menu
    Copy the full SHA
    ee64270 View commit details
    Browse the repository at this point in the history