mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
247 B
C#
14 lines
247 B
C#
using System;
|
|
|
|
namespace NullAlways
|
|
{
|
|
class Bad
|
|
{
|
|
void DoPrint(string s)
|
|
{
|
|
if (s != null || s.Length > 0) // $ Alert[cs/dereferenced-value-is-always-null]
|
|
Console.WriteLine(s);
|
|
}
|
|
}
|
|
}
|