Exemplo n.º 1
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* 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__short_large_68b.GoodG2BSink();
 }
Exemplo n.º 2
0
 public override void Bad()
 {
     /* FLAW: Use a number larger than byte.MaxValue */
     data = byte.MaxValue + 5;
     CWE197_Numeric_Truncation_Error__short_large_68b.BadSink();
 }