Fix new (nullability) compiler warnings

This commit is contained in:
Tamas Vajk
2021-02-10 10:40:57 +01:00
parent 71f095d6d4
commit 4f383be13b
9 changed files with 74 additions and 22 deletions

View File

@@ -13,6 +13,12 @@ namespace Semmle.Util
{
stdout = new List<string>();
using var process = Process.Start(pi);
if (process is null)
{
return -1;
}
string? s;
do
{