mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:27:45 +00:00
LibDebug: Add missing break
in AddressRanges::for_each_range()
This commit is contained in:
parent
a8fae3d2c8
commit
6b2e4f896b
1 changed files with 1 additions and 0 deletions
|
@ -54,6 +54,7 @@ void AddressRanges::for_each_range(Function<void(Range)> callback)
|
||||||
size_t length;
|
size_t length;
|
||||||
m_range_lists_stream.read_LEB128_unsigned(length);
|
m_range_lists_stream.read_LEB128_unsigned(length);
|
||||||
callback(Range { start, start + length });
|
callback(Range { start, start + length });
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
case RangeListEntryType::EndOfList:
|
case RangeListEntryType::EndOfList:
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue