Merge pull request #657 from BBasile/issue-656

fix #656 - Crash due to unsafe access in infinite range check
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-06-08 13:41:47 +02:00 committed by GitHub
commit 32dd411ab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -62,7 +62,7 @@ final class IncorrectInfiniteRangeCheck : BaseAnalyzer
override void visit(const ReturnStatement rs)
{
if (rs.expression.items.length != 1)
if (!rs.expression || rs.expression.items.length != 1)
return;
UnaryExpression unary = cast(UnaryExpression) rs.expression.items[0];
if (unary is null)
@ -126,3 +126,13 @@ class C { bool empty() { return false; } } // [warn]: %1$s
stderr.writeln("Unittest for IncorrectInfiniteRangeCheck passed.");
}
// test for https://github.com/dlang-community/D-Scanner/issues/656
// unittests are skipped but D-Scanner sources are self checked
version(none) struct Foo
{
void empty()
{
return;
}
}