I have an application that is segfaulting inside the following boost function:
boost::filesystem::detail::symlink_status
It is happenening inside the libboost_filesystem.so.1.5.7.0.
The line of code in my app that is calling into the .so is:
boost::filesystem::remove_all(*path, error);
The issue only happens in certain use cases. In others, there is no seg fault and it works fine.
How can I root cause this issue?