Example #1
0
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            double data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            CWE197_Numeric_Truncation_Error__double_large_to_float_53b.GoodG2BSink(data);
        }
Example #2
0
        public override void Bad()
        {
            double data;

            /* FLAW: Use a number larger than long.MaxValue */
            data = float.MaxValue + 5;
            CWE197_Numeric_Truncation_Error__double_large_to_float_53b.BadSink(data);
        }