Raw
1 int use_FREE_AND_NULL(int *v)
2 {
3 free(*v);
4 *v = NULL;
5 }
6
7 int need_no_if(int *v)
8 {
9 if (v)
10 free(v);
11 }