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

[clang] Fix static analyzer concerns in #embed code #99331

Merged
merged 2 commits into from
Jul 19, 2024

Commits on Jul 17, 2024

  1. [clang] Fix static analyzer concerns in #embed code

    1. Dead code int LookupEmbedFile. The loop always exited on the first
       iteration. This was also causing a bug of not checking all
       directories provided by --embed-dir
    
    2. Use of uninitialized variable CurTok LexEmbedParameters. It was used
       to initialize the field which seems to be unused. Removed unused
       field, this way CurTok should be initialized by Lex method.
    Fznamznon committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    178c66c View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. Rename the test

    Fznamznon committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    9c6914f View commit details
    Browse the repository at this point in the history