예제 #1
0
        /* goodG2B() - use GoodSource and BadSink */
        private static void GoodG2B()
        {
            ulong data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            Hashtable dataHashtable = new Hashtable(5);

            dataHashtable.Add(0, data);
            dataHashtable.Add(1, data);
            dataHashtable.Add(2, data);
            CWE190_Integer_Overflow__UInt64_console_readLine_square_72b.GoodG2BSink(dataHashtable);
        }