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

            /* FIX: Use a hardcoded number that won't a divide by zero */
            data = 2.0f;
            goodG2BPublicStatic = true;
            CWE369_Divide_by_Zero__float_Environment_divide_22b.GoodG2BSink(data);
        }
Example #2
0
        /* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2()
        {
            float data = 0.0f;

            data = -1.0f; /* Initialize data */
            /* get environment variable ADD */
            /* POTENTIAL FLAW: Read data from an environment variable */
            {
                string stringNumber = Environment.GetEnvironmentVariable("ADD");
                if (stringNumber != null) // avoid NPD incidental warnings
                {
                    try
                    {
                        data = int.Parse(stringNumber.Trim());
                    }
                    catch (FormatException exceptNumberFormat)
                    {
                        IO.Logger.Log(NLog.LogLevel.Warn, exceptNumberFormat, "Number format exception parsing data from string");
                    }
                }
            }
            goodB2G2PublicStatic = true;
            CWE369_Divide_by_Zero__float_Environment_divide_22b.GoodB2G2Sink(data);
        }