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 two use-after-free issues #30

Merged
merged 2 commits into from
Mar 15, 2021

Commits on Mar 15, 2021

  1. Fix use-after-free in verto_free()

    Instead of freeing all events, verto_free() would spin trying to free
    the same one.
    
    Discovered by scan-build.
    
    Signed-off-by: Robbie Harwood <rharwood@redhat.com>
    frozencemetery committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    e145d31 View commit details
    Browse the repository at this point in the history
  2. Fix use-after-free in verto_reinitialize()

    Linked-list deletion didn't actually happen, and we'd try to
    reinitialize freed modules (that weren't reinitializable anyway).
    
    Discovered by scan-build.
    
    Signed-off-by: Robbie Harwood <rharwood@redhat.com>
    frozencemetery committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    84d0bdd View commit details
    Browse the repository at this point in the history