Fix NPE in BlameGenerator.getSourceStart()

Bug: 499543
Change-Id: I99f6ebb1c3ceea20e8ca093acbe824c9f0362d45
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2018-07-23 23:07:23 +02:00
parent 280707b0fc
commit e0e52cb011
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ private boolean result(Candidate n) throws IOException {
n.beginResult(revPool);
outCandidate = n;
outRegion = n.regionList;
return true;
return outRegion != null;
}
private boolean reverseResult(Candidate parent, Candidate source)