示例#1
0
 /* goodB2G() - use badsource and goodsink */
 private static void GoodB2G()
 {
     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");
             }
         }
     }
     CWE369_Divide_by_Zero__float_Environment_modulo_68b.GoodB2GSink();
 }
示例#2
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* FIX: Use a hardcoded number that won't a divide by zero */
     data = 2.0f;
     CWE369_Divide_by_Zero__float_Environment_modulo_68b.GoodG2BSink();
 }