mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-04 12:58:41 +00:00
fix rdi_format_parse and rdi_breakpad_from_pdb build
This commit is contained in:
@@ -278,7 +278,7 @@ rdi_line_info_idx_range_from_voff(RDI_ParsedLineTable *line_info, RDI_U64 voff,
|
|||||||
}
|
}
|
||||||
|
|
||||||
//- rjf: scan rightward, to count # of line info with this voff
|
//- rjf: scan rightward, to count # of line info with this voff
|
||||||
for(U64 idx = result; idx < line_info->count; idx += 1)
|
for(RDI_U64 idx = result; idx < line_info->count; idx += 1)
|
||||||
{
|
{
|
||||||
if(line_info->voffs[idx] == voff)
|
if(line_info->voffs[idx] == voff)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ internal TS_TASK_FUNCTION_DEF(p2b_dump_proc_chunk_task__entry_point)
|
|||||||
for(U64 voff = voff_range.min, last_voff = 0;
|
for(U64 voff = voff_range.min, last_voff = 0;
|
||||||
voff < voff_range.max && voff > last_voff;)
|
voff < voff_range.max && voff > last_voff;)
|
||||||
{
|
{
|
||||||
RDI_U64 line_info_idx = rdi_line_info_idx_from_voff(&line_info, voff, 0);
|
RDI_U64 line_info_idx = rdi_line_info_idx_from_voff(&line_info, voff);
|
||||||
if(line_info_idx < line_info.count)
|
if(line_info_idx < line_info.count)
|
||||||
{
|
{
|
||||||
RDI_Line *line = &line_info.lines[line_info_idx];
|
RDI_Line *line = &line_info.lines[line_info_idx];
|
||||||
|
|||||||
Reference in New Issue
Block a user