mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-13 11:15:38 +02:00
FIx parsing.
This commit is contained in:
parent
09c4ef716b
commit
0f58242ba8
1 changed files with 38 additions and 38 deletions
|
@ -73,7 +73,6 @@ public class MIInfoSharedLibraryInfo extends MIInfo {
|
|||
void parseUnixShared(String str, List aList) {
|
||||
if (str.length() > 0) {
|
||||
// Pass the header
|
||||
if (Character.isDigit(str.charAt(0))) {
|
||||
int index = -1;
|
||||
long from = 0;
|
||||
long to = 0;
|
||||
|
@ -110,6 +109,7 @@ public class MIInfoSharedLibraryInfo extends MIInfo {
|
|||
break;
|
||||
}
|
||||
}
|
||||
if (name.length() > 0) {
|
||||
MIShared s = new MIShared(from, to, syms, name);
|
||||
aList.add(s);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue