Fix reference to PostUpdateNode

This commit is contained in:
Tony Torralba
2021-08-03 12:45:12 +02:00
parent 084cda6daa
commit c44de87503

View File

@@ -98,7 +98,7 @@ private predicate groovyCompilationUnitTaintStep(DataFlow::Node fromNode, DataFl
m.getDeclaringType() instanceof TypeGroovyCompilationUnit
|
fromNode.asExpr() = ma.getArgument(ma.getNumArgument() - 1) and
toNode.(PostUpdateNode).getPreUpdateNode().asExpr() = ma.getQualifier()
toNode.(DataFlow::PostUpdateNode).getPreUpdateNode().asExpr() = ma.getQualifier()
)
}