File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
swift/ql/lib/codeql/swift/security Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ class CleartextStoragePreferencesAdditionalFlowStep extends Unit {
33
33
abstract predicate step ( DataFlow:: Node nodeFrom , DataFlow:: Node nodeTo ) ;
34
34
}
35
35
36
- /** The `DataFlow::Node` of an expression that gets written to the user defaults database */
36
+ /**
37
+ * The `DataFlow::Node` of an expression that gets written to the user defaults database.
38
+ */
37
39
private class UserDefaultsStore extends CleartextStoragePreferencesSink {
38
40
UserDefaultsStore ( ) {
39
41
exists ( CallExpr call |
@@ -45,7 +47,9 @@ private class UserDefaultsStore extends CleartextStoragePreferencesSink {
45
47
override string getStoreName ( ) { result = "the user defaults database" }
46
48
}
47
49
48
- /** The `DataFlow::Node` of an expression that gets written to the iCloud-backed NSUbiquitousKeyValueStore */
50
+ /**
51
+ * The `DataFlow::Node` of an expression that gets written to the iCloud-backed `NSUbiquitousKeyValueStore`.
52
+ */
49
53
private class NSUbiquitousKeyValueStore extends CleartextStoragePreferencesSink {
50
54
NSUbiquitousKeyValueStore ( ) {
51
55
exists ( CallExpr call |
You can’t perform that action at this time.
0 commit comments