Example #1
0
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            float 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__float_large_to_int_54b.GoodG2BSink(data);
        }
Example #2
0
        public override void Bad()
        {
            float data;

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