Exemple #1
0
        public override void Bad()
        {
            short data;

            /* POTENTIAL FLAW: Use the minimum size of the data type */
            data = short.MinValue;
            short[] dataArray = new short[5];
            dataArray[2] = data;
            CWE191_Integer_Underflow__Short_min_sub_66b.BadSink(dataArray);
        }