Index: source/Target/CPPLanguageRuntime.cpp =================================================================== --- source/Target/CPPLanguageRuntime.cpp +++ source/Target/CPPLanguageRuntime.cpp @@ -278,7 +278,8 @@ } // Case 4 or 5 - if (!symbol->GetName().GetStringRef().startswith("vtable for")) { + if (symbol != nullptr && + !symbol->GetName().GetStringRef().startswith("vtable for")) { optional_info.callable_case = LibCppStdFunctionCallableCase::FreeOrMemberFunction; optional_info.callable_address = function_address_resolved;