Exemplo n.º 1
0
        public override void Bad()
        {
            int data;

            /* POTENTIAL FLAW: Use the maximum value for this type */
            data = int.MaxValue;
            int[] dataArray = new int[5];
            dataArray[2] = data;
            CWE190_Integer_Overflow__int_max_square_66b.BadSink(dataArray);
        }