We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b6705 commit 7fcd48aCopy full SHA for 7fcd48a
stdlib/public/Backtracing/Elf.swift
@@ -964,7 +964,7 @@ struct ElfSymbolTable<SomeElfTraits: ElfTraits>: ElfSymbolTableProtocol {
964
nextValue = _symbols[mid + 1].value
965
}
966
967
- if symbol.value <= address && nextValue >= address {
+ if symbol.value <= address && nextValue > address {
968
var ndx = mid
969
while ndx > 0 && _symbols[ndx - 1].value == address {
970
ndx -= 1
0 commit comments