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

Fix potential use of uninitialized variable. #6

Merged
merged 1 commit into from
Sep 25, 2017

Commits on Sep 25, 2017

  1. Fix potential use of uninitialized variable.

    It appears in some cases control might jump to the end of `fuzz_one` via
    the `abandon_entry` label, where it gets freed, prior to `position_map`
    initialization. Setting it to `NULL` turns this into a harmless
    `free(NULL)`. Might manifest as a double free in some cases, probably
    due to reuse of old stack space in a subsequent call.
    dkasak committed Sep 25, 2017
    Configuration menu
    Copy the full SHA
    09dc1dd View commit details
    Browse the repository at this point in the history