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
`realpath` will heap allocate the path, and `String(cString:)` will copy
the heap allocation. This results in a memory leak due to the allocated
memory never being freed. Ensure that we deallocate the memory.
0 commit comments