Esempio n. 1
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     int[] data;
     /* FIX: hardcode data to non-null */
     data = new int[5];
     CWE476_NULL_Pointer_Dereference__int_array_71b.GoodG2BSink((Object)data);
 }
Esempio n. 2
0
 /* goodB2G() - use badsource and goodsink */
 private static void GoodB2G()
 {
     int[] data;
     /* POTENTIAL FLAW: data is null */
     data = null;
     CWE476_NULL_Pointer_Dereference__int_array_71b.GoodB2GSink((Object)data);
 }
Esempio n. 3
0
 public override void Bad()
 {
     int[] data;
     /* POTENTIAL FLAW: data is null */
     data = null;
     CWE476_NULL_Pointer_Dereference__int_array_71b.BadSink((Object)data);
 }