svf-lib 1.0.1608 → 1.0.1609
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
|
@@ -373,6 +373,18 @@ public:
|
|
|
373
373
|
bugSet.insert(newBug);
|
|
374
374
|
break;
|
|
375
375
|
}
|
|
376
|
+
case GenericBug::FULLNULLPTRDEREFERENCE:
|
|
377
|
+
{
|
|
378
|
+
newBug = new FullNullPtrDereferenceBug(eventStack);
|
|
379
|
+
bugSet.insert(newBug);
|
|
380
|
+
break;
|
|
381
|
+
}
|
|
382
|
+
case GenericBug::PARTIALNULLPTRDEREFERENCE:
|
|
383
|
+
{
|
|
384
|
+
newBug = new PartialNullPtrDereferenceBug(eventStack);
|
|
385
|
+
bugSet.insert(newBug);
|
|
386
|
+
break;
|
|
387
|
+
}
|
|
376
388
|
default:
|
|
377
389
|
{
|
|
378
390
|
assert(false && "Abstract Execution does NOT hava his bug type!");
|