Example #1
0
        public override void Bad()
        {
            short data = CWE190_Integer_Overflow__Short_console_readLine_multiply_61b.BadSource();

            if (data > 0) /* ensure we won't have an underflow */
            {
                /* POTENTIAL FLAW: if (data*2) > short.MaxValue, this will overflow */
                short result = (short)(data * 2);
                IO.WriteLine("result: " + result);
            }
        }