mirror of
https://github.com/python/cpython.git
synced 2025-10-27 19:54:38 +00:00
[3.9] bpo-45838: Fix incorrect line numbers in Tools/gdb/libpython.py (GH-29628)
The line number calculation in libpython.py did not properly handle negative (signed) line table deltas.
This commit is contained in:
parent
4296396db0
commit
2a32dbf110
3 changed files with 30 additions and 1 deletions
|
|
@ -659,7 +659,10 @@ def addr2line(self, addrq):
|
|||
addr += ord(addr_incr)
|
||||
if addr > addrq:
|
||||
return lineno
|
||||
lineno += ord(line_incr)
|
||||
line_delta = ord(line_incr)
|
||||
if line_delta >= 128:
|
||||
line_delta -= 256
|
||||
lineno += line_delta
|
||||
return lineno
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue