CS.CONSTCOND.IF
'if' ステートメントの条件は、常に true であるか常に false です。
例 1
コピー
class Thing {
void DoAction() {
if (sizeof(char) < 2) // defect - the condition is constant
{
/* ...*/
}
}
}
外部参考資料
セキュリティトレーニング
Secure Code Warrior が提供しているアプリケーションセキュリティトレーニング教材。