We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d5af7 commit 9278f03Copy full SHA for 9278f03
powershell/ql/lib/semmle/code/powershell/dataflow/internal/DataFlowDispatch.qll
@@ -241,6 +241,13 @@ private module Cached {
241
call = ns.getABindingCall() and
242
exists(call.getArgument(pos))
243
)
244
+ or
245
+ // Uncalled functions are never the target of a call returned by
246
+ // `ns.getABindingCall()`, but those parameters should still have
247
+ // positions since SSA depends on this.
248
+ // In particular, global scope is also an uncalled function.
249
+ any(Parameter p).getIndexExcludingPipelines() = pos and
250
+ ns.isEmpty()
251
} or
252
TPipelineParameter()
253
}
0 commit comments