File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
python/ql/test/experimental/dataflow Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class MaximalFlowsConfig extends DataFlow::Configuration {
3535 override predicate isSink ( DataFlow:: Node node ) {
3636 exists ( node .getLocation ( ) .getFile ( ) .getRelativePath ( ) ) and
3737 not any ( CallNode c ) .getArg ( _) = node .asCfgNode ( ) and
38- not node instanceof ArgumentNode and
38+ not node instanceof DataFlow :: ArgumentNode and
3939 not node .asCfgNode ( ) .( NameNode ) .getId ( ) .matches ( "SINK%" ) and
4040 not exists ( DataFlow:: Node succ | DataFlow:: localFlowStep ( node , succ ) )
4141 }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class CallGraphConfig extends DataFlow::Configuration {
1111 override predicate isSource ( DataFlow:: Node node ) {
1212 node instanceof DataFlowPrivate:: ReturnNode
1313 or
14- node instanceof DataFlowPrivate :: ArgumentNode
14+ node instanceof DataFlow :: ArgumentNode
1515 }
1616
1717 override predicate isSink ( DataFlow:: Node node ) {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class CallGraphConfig extends DataFlow::Configuration {
1111 node instanceof DataFlowPrivate:: ReturnNode
1212 or
1313 // These sources should allow for the non-standard call syntax
14- node instanceof DataFlowPrivate :: ArgumentNode
14+ node instanceof DataFlow :: ArgumentNode
1515 }
1616
1717 override predicate isSink ( DataFlow:: Node node ) {
You can’t perform that action at this time.
0 commit comments