-
Notifications
You must be signed in to change notification settings - Fork 16
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
Invalid Free causes parsing the valgrind output to fail #20
Comments
At this point, the |
This requires to parse either a |
This is fixed by #80. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you have an invalid free,
cargo-valgrind
currently exits with an error. This is due to a changed Valgrind XML:Note the multiple stack fields.
To resolve this error the stack
Error
structure has to be changed, so that it provides a vector ofStack
s.Since the
valgrind_xml
module is not public, the change won't not API breaking.The text was updated successfully, but these errors were encountered: