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
{{ message }}
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Doing anything safely with these types besides passing them into sandboxed functions is difficult, because they don't have useful operators (e.g. operator* for pointers), especially compared to their tainted<T> counterparts. Using them would be preferable to raw mallocInSandbox operations because we can ensure they are cleaned up at the end of their containing block.
Doing anything safely with these types besides passing them into sandboxed functions is difficult, because they don't have useful operators (e.g.
operator*for pointers), especially compared to theirtainted<T>counterparts. Using them would be preferable to rawmallocInSandboxoperations because we can ensure they are cleaned up at the end of their containing block.