Beispiel #1
0
        /* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            short data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            short[] dataArray = new short[5];
            dataArray[2] = data;
            CWE191_Integer_Underflow__Short_min_multiply_66b.GoodG2BSink(dataArray);
        }
Beispiel #2
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_multiply_66b.GoodB2GSink(dataArray);
        }
Beispiel #3
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_multiply_66b.BadSink(dataArray);
        }