public override void Bad()
        {
            long data = CWE190_Integer_Overflow__Long_max_multiply_61b.BadSource();

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