CS.CONSTCOND.TERNARY
条件式の条件は常に true であるか常に false です。
例 1
コピー
class IntSize {
void GetIntSize() {
return (sizeof(int) > 4 ? sizeof(int) : 4); // defect - the condition is constant
}
}
外部参考資料
セキュリティトレーニング
Secure Code Warrior が提供しているアプリケーションセキュリティトレーニング教材。