Skip to content

Commit 131cf8d

Browse files
committed
Python: Fix compilation error
1 parent b065d87 commit 131cf8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/experimental/dataflow/internal/TaintTrackingPrivate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ predicate containerStep(DataFlow::CfgNode nodeFrom, DataFlow::Node nodeTo) {
182182
exists(CallNode call, string name |
183183
name in ["append", "add"] and
184184
call.getFunction().(AttrNode).getObject(name) =
185-
nodeTo.(PostUpdateNode).getPreUpdateNode().asCfgNode() and
185+
nodeTo.(DataFlow::PostUpdateNode).getPreUpdateNode().asCfgNode() and
186186
call.getArg(0) = nodeFrom.getNode()
187187
)
188188
}

0 commit comments

Comments
 (0)