Fixing ArrayIndexOutOfBoundsException reported by Steven Beal caused by broken code to setup endLine in SourceInfo.updateLineInfo.
git-svn-id: svn://10.0.0.236/trunk@127353 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -2233,7 +2233,7 @@ class SourceInfo {
|
||||
}
|
||||
|
||||
int fnFirstLine = lines[0];
|
||||
int fnEndLine = lines[0];
|
||||
int fnEndLine = fnFirstLine + 1;
|
||||
for (int i = 1; i != lines.length; ++i) {
|
||||
int line = lines[i];
|
||||
if (line < fnFirstLine) {
|
||||
|
||||
Reference in New Issue
Block a user