File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ private import semmle.code.csharp.dataflow.FlowSummary
88private import semmle.code.csharp.dataflow.internal.DataFlowImplCommon as DataFlowImplCommon
99private import semmle.code.csharp.dataflow.internal.DataFlowPrivate
1010private import semmle.code.csharp.dataflow.internal.DataFlowDispatch as DataFlowDispatch
11+ private import semmle.code.csharp.dataflow.internal.FlowSummaryImpl as Impl
1112private import semmle.code.csharp.dataflow.internal.TaintTrackingPrivate
1213private import semmle.code.csharp.security.dataflow.flowsources.Remote
1314
@@ -80,7 +81,7 @@ class ExternalApi extends DotNet::Callable {
8081
8182 /** Holds if this API has a supported summary. */
8283 predicate hasSummary ( ) {
83- this instanceof SummarizedCallable or
84+ exists ( Impl :: Public :: SummarizedCallable sc | sc . asCallable ( ) = this ) or
8485 defaultAdditionalTaintStep ( this .getAnInput ( ) , _)
8586 }
8687
You can’t perform that action at this time.
0 commit comments