Skip to content

Commit fbc3680

Browse files
committed
C#: Fix merge issues after re-base.
1 parent 2e273f2 commit fbc3680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ module CsvValidation {
365365
or
366366
exists(string row, string kind | sourceModel(row) |
367367
kind = row.splitAt(";", 7) and
368-
not kind = "local" and
368+
not kind = ["local", "file"] and
369369
result = "Invalid kind \"" + kind + "\" in source model."
370370
)
371371
}

0 commit comments

Comments
 (0)