Skip to content

Commit 1e8b4bd

Browse files
authored
Merge pull request #10973 from geoffw0/comment
Swift: Fix UrlRemoteFlowSource name clash
2 parents 3d025ea + 53fa91f commit 1e8b4bd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

swift/ql/lib/codeql/swift/frameworks/StandardLibrary/CustomUrlSchemes.qll

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ private import codeql.swift.dataflow.DataFlow
33
private import codeql.swift.dataflow.ExternalFlow
44
private import codeql.swift.dataflow.FlowSources
55

6-
private class UrlRemoteFlowSource extends SourceModelCsv {
6+
/**
7+
* A model for custom URL remote flow sources. iOS apps can receive arbitrary
8+
* URLs from other apps in these functions if they register a custom URL scheme.
9+
*/
10+
private class CustomUrlRemoteFlowSource extends SourceModelCsv {
711
override predicate row(string row) {
812
row =
913
[

0 commit comments

Comments
 (0)