mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Fix problem with long file names.
This commit is contained in:
parent
fef92c58ea
commit
33160cd843
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ public class CodeViewReader implements ISymbolReader {
|
|||
|
||||
// now skip to the name length
|
||||
file.skipBytes(2 + segments*4 + segments*8);
|
||||
byte nameLength = file.readByte();
|
||||
int nameLength = file.readUnsignedByte();
|
||||
|
||||
// now extract the filename and add it to our list
|
||||
// if it's not already there
|
||||
|
|
Loading…
Add table
Reference in a new issue