https://bugs.kde.org/show_bug.cgi?id=432406
--- Comment #5 from Tusooa Zhu <tus...@vista.aero> --- I used the following code to override ucnv_getDefaultName() to call std::terminate() and thus allow us to get a backtrace: ``` #include <exception> extern "C" const char *ucnv_getDefaultName(void) { std::terminate(); return ""; } ``` Compile it with `g++ ucnv-override.cpp -shared -fPIC -o ucnv-override.so` and set LD_PRELOAD=/path/to/ucnv-override.so , we get two backtraces: one with system dolphin and kio, another with those I compiled with debugging symbols. -- You are receiving this mail because: You are watching all bug changes.