Your IP : 216.73.216.34


Current Path : /usr/share/doc/git/contrib/coccinelle/
Upload File :
Current File : //usr/share/doc/git/contrib/coccinelle/free.cocci

@@
expression E;
@@
- if (E)
  free(E);

@@
expression E;
@@
- if (!E)
  free(E);

@@
expression E;
@@
- free(E);
+ FREE_AND_NULL(E);
- E = NULL;