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
Because we pack the same pointers in internal storage with more than one reference (using SAN's etc for each cert), all of the contexts we store could potentially get double-free'd, and this will cause access violation as sure as you were born.
Switch internal storage to shared_ptr and don't manually delete. This will cause automatic, correct cleanup.
The text was updated successfully, but these errors were encountered:
Because we pack the same pointers in internal storage with more than one reference (using SAN's etc for each cert), all of the contexts we store could potentially get double-free'd, and this will cause access violation as sure as you were born.
Switch internal storage to shared_ptr and don't manually delete. This will cause automatic, correct cleanup.
The text was updated successfully, but these errors were encountered: