Index: source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp =================================================================== --- source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp +++ source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp @@ -161,9 +161,9 @@ case DW_FORM_strp: case DW_FORM_sec_offset: if (cu->IsDWARF64()) - debug_info_data.GetU64(offset_ptr); + debug_info_data.GetU64(&offset); else - debug_info_data.GetU32(offset_ptr); + debug_info_data.GetU32(&offset); break; default: @@ -325,9 +325,9 @@ case DW_FORM_strp: case DW_FORM_sec_offset: if (cu->IsDWARF64()) - debug_info_data.GetU64(offset_ptr); + debug_info_data.GetU64(&offset); else - debug_info_data.GetU32(offset_ptr); + debug_info_data.GetU32(&offset); break; default: