mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix bug 155400.
This commit is contained in:
parent
c557bb21a6
commit
c2bb9c4cef
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ public class DwarfReader extends Dwarf implements ISymbolReader {
|
|||
m_leb128Size = 0;
|
||||
while (true) {
|
||||
b = (short) data[offset++];
|
||||
if (b == -1)
|
||||
if (data.length == offset)
|
||||
break; //throw new IOException("no more data");
|
||||
m_leb128Size++;
|
||||
result |= ((long) (b & 0x7f) << shift);
|
||||
|
|
Loading…
Add table
Reference in a new issue