We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f9135 commit 58bb16eCopy full SHA for 58bb16e
python/ql/src/Variables/Undefined.qll
@@ -37,11 +37,11 @@ private predicate first_use(NameNode u, EssaVariable v) {
37
)
38
}
39
40
-/* Holds if `call` is a call of the form obj.method_name(...) and
+/* Holds if `call` is a call of the form obj.method_name(...) and
41
* there is a function called `method_name` that can exit the program.
42
*/
43
private predicate maybe_call_to_exiting_function(CallNode call) {
44
- exists(FunctionObject exits, string name |
+ exists(FunctionValue exits, string name |
45
exits.neverReturns() and exits.getName() = name
46
|
47
call.getFunction().(NameNode).getId() = name or
@@ -119,5 +119,3 @@ class UninitializedConfig extends TaintTracking::Configuration {
119
120
121
122
-
123
0 commit comments