Skip to content

Commit 592b60d

Browse files
committed
C#: Fix rebase error merge (validation on encryption kind was un-intentionally deleted).
1 parent 160ae93 commit 592b60d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

csharp/ql/lib/semmle/code/csharp/dataflow/ExternalFlow.qll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ module CsvValidation {
359359
exists(string row, string kind | sinkModel(row) |
360360
kind = row.splitAt(";", 7) and
361361
not kind = ["code", "sql", "xss", "remote", "html"] and
362+
not kind.matches("encryption-%") and
362363
result = "Invalid kind \"" + kind + "\" in sink model."
363364
)
364365
or

0 commit comments

Comments
 (0)