Reports dereferences of the pointers that may contain nullptr.

Example:


  using namespace std;
  void process(string *a, string b) {
    if (a != nullptr || a->length()) {
      a = &b;
    }
  }