Exemple #1
0
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            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.GoodB2GSink(dataArray);
        }