1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
  
     | 
    
      // RUN: %check_clang_tidy %s bugprone-suspicious-realloc-usage %t
void *realloc(void *, __SIZE_TYPE__);
namespace std {
  using ::realloc;
}
namespace n1 {
  void *p;
}
namespace n2 {
  void *p;
}
struct P {
  void *p;
  void *q;
  P *pp;
  void *&f();
};
struct P1 {
  static void *p;
  static void *q;
};
template<class>
struct P2 {
  static void *p;
  static void *q;
};
template<class A, class B>
void templ(void *p) {
  A::p = realloc(A::p, 10);
  // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: 'A::p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  p = realloc(A::p, 10);
  A::q = realloc(A::p, 10);
  A::p = realloc(B::p, 10);
  P2<A>::p = realloc(P2<A>::p, 1);
  // CHECK-MESSAGES: :[[@LINE-1]]:14: warning: 'P2<A>::p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  P2<A>::p = realloc(P2<B>::p, 1);
}
void *&getPtr();
P &getP();
void warn(void *p, P *p1, int *pi) {
  p = realloc(p, 111);
  // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: 'p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  p = std::realloc(p, sizeof(int));
  // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: 'p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  p1->p = realloc(p1->p, 10);
  // CHECK-MESSAGES: :[[@LINE-1]]:11: warning: 'p1->p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  p1->pp->p = realloc(p1->pp->p, 10);
  // CHECK-MESSAGES: :[[@LINE-1]]:15: warning: 'p1->pp->p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  pi = (int*)realloc(pi, 10);
  // CHECK-MESSAGES: :[[@LINE-1]]:14: warning: 'pi' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  templ<P1, P2<int>>(p);
}
void no_warn(void *p, P *p1, P *p2) {
  void *q = realloc(p, 10);
  q = realloc(p, 10);
  p1->q = realloc(p1->p, 10);
  p2->p = realloc(p1->p, 20);
  n1::p = realloc(n2::p, 30);
  p1->pp->p = realloc(p1->p, 10);
  getPtr() = realloc(getPtr(), 30);
  getP().p = realloc(getP().p, 20);
  p1->f() = realloc(p1->f(), 30);
}
void no_warn_if_copy_exists_before1(void *p) {
  void *q = p;
  p = realloc(p, 111);
}
void no_warn_if_copy_exists_before2(void *p, void *q) {
  q = p;
  p = realloc(p, 111);
}
void *g_p;
void no_warn_if_copy_exists_before3() {
  void *q = g_p;
  g_p = realloc(g_p, 111);
}
void warn_if_copy_exists_after(void *p) {
  p = realloc(p, 111);
  // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: 'p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
  void *q = p;
}
void test_null_child(void *p) {
  for (;;)
    break;
  p = realloc(p, 111);
  // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: 'p' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage]
}
 
     |