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.
@@ -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!");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.1608",
3
+ "version": "1.0.1609",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {