You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have an invalid free, cargo-valgrind currently exits with an error. This is due to a changed Valgrind XML:
<error>
<unique>...</unique>
<tid>...</tid>
<kind>InvalidFree</kind>
<what>Invalid free() / delete / delete[] / realloc()</what>
<stack>...</stack>
<auxwhat>Address 0x8c2b840 is 0 bytes inside a block of size 16 free'd</auxwhat>
<stack>...</stack>
<auxwhat>Block was alloc'd at</auxwhat>
<stack>...</stack>
</error>
Note the multiple stack fields.
To resolve this error the stack Error structure has to be changed, so that it provides a vector of Stacks.
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:
This requires to parse either a Resources struct in case of <xwhat> or a String in case of what. The same applies for auxwhat/xauxwhat.
Refer to the serde documentation on that topic.
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: