Merge pull request #724 from BBasile/issue-723

fix #723 - segfault when running D-Scanner master against dparse repo with -S
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-11-27 14:55:15 +01:00 committed by GitHub
commit c57a944506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -308,9 +308,11 @@ final class UnusedVariableCheck : BaseAnalyzer
override void visit(const WithStatement withStatetement)
{
interestDepth++;
withStatetement.expression.accept(this);
if (withStatetement.expression)
withStatetement.expression.accept(this);
interestDepth--;
withStatetement.declarationOrStatement.accept(this);
if (withStatetement.declarationOrStatement)
withStatetement.declarationOrStatement.accept(this);
}
override void visit(const Parameter parameter)