mirror of
https://github.com/github/codeql.git
synced 2026-04-20 14:34:04 +02:00
12 lines
189 B
C#
12 lines
189 B
C#
using System;
|
|
using System.IO;
|
|
|
|
class Bad
|
|
{
|
|
long GetLength(string file)
|
|
{
|
|
var stream = new FileStream(file, FileMode.Open); // $ Alert
|
|
return stream.Length;
|
|
}
|
|
}
|