Project

General

Profile

Bug #17609 » ruby-addr2line-DW_LNS_fixed_advance_pc.patch

Fix the operand size of DW_LNS_fixed_advance_pc - xtkoba (Tee KOBAYASHI), 02/04/2021 07:48 AM

View differences:

addr2line.c
addr += a;
break;
case DW_LNS_fixed_advance_pc:
a = *(unsigned char *)p++;
a = *(uint16_t *)p;
p += sizeof(uint16_t);
addr += a;
break;
case DW_LNS_set_prologue_end:
(1-1/2)