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

fuzz: pacify MSAN #804

Merged
merged 2 commits into from
May 10, 2024
Merged

fuzz: pacify MSAN #804

merged 2 commits into from
May 10, 2024

Commits on May 8, 2024

  1. fuzz_attobj: initialize dummy

    LDVG committed May 8, 2024
    Configuration menu
    Copy the full SHA
    f315e8c View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. fuzz: unpoison result of mutate_{byte,int}()

    LLVMFuzzerMutate() may return data marked as uninitialized but our value
    mutators assume that the entire region is initialized. MSAN recently got
    stricter in how it checks use of these potentially uninitialized values.
    Manually unpoison the response from LLVMFuzzerMutate() for these two
    functions.
    LDVG committed May 10, 2024
    Configuration menu
    Copy the full SHA
    3d5071d View commit details
    Browse the repository at this point in the history