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
The key to `bb_id_table` is not just an integer that we can store into a `void*`.
It's a struct that needs to be allocated when adding a new entry into the table.
Previously we allocated the key on the stack, hence losing it after the BB
instrumentation function. We now allocate it on the heap with `dr_global_alloc()`.
We also configure the hashtable setting a function to free its keys when deleted.
Issue #7685
0 commit comments