mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
Fix PyCode_Addr2Location when addrq < 0 (GH-95091)
This commit is contained in:
parent
834bd5dd76
commit
a6daaf2a13
2 changed files with 3 additions and 0 deletions
|
@ -971,6 +971,7 @@ PyCode_Addr2Location(PyCodeObject *co, int addrq,
|
|||
if (addrq < 0) {
|
||||
*start_line = *end_line = co->co_firstlineno;
|
||||
*start_column = *end_column = 0;
|
||||
return 1;
|
||||
}
|
||||
assert(addrq >= 0 && addrq < _PyCode_NBYTES(co));
|
||||
PyCodeAddressRange bounds;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue