зеркало из https://github.com/microsoft/git.git
Merge branch 'rs/free-and-null'
Code cleanup. * rs/free-and-null: coccinelle: polish FREE_AND_NULL rules
This commit is contained in:
Коммит
d73b46cfb5
|
@ -10,17 +10,9 @@ expression E;
|
|||
- if (!E)
|
||||
free(E);
|
||||
|
||||
@@
|
||||
type T;
|
||||
T *ptr;
|
||||
@@
|
||||
- free(ptr);
|
||||
- ptr = NULL;
|
||||
+ FREE_AND_NULL(ptr);
|
||||
|
||||
@@
|
||||
expression E;
|
||||
@@
|
||||
- free(E);
|
||||
- E = NULL;
|
||||
+ FREE_AND_NULL(E);
|
||||
- E = NULL;
|
||||
|
|
Загрузка…
Ссылка в новой задаче