This website works better with JavaScript.
Explore
Register
Sign In
kernel
/
git
mirror of
https://git.kernel.org/pub/scm/git/git.git
Watch
1
Star
0
Fork
You've already forked git
0
Code
Releases
Activity
59934
Commits
6
Branches
36
Tags
131 MiB
C
49.9%
Shell
38.3%
Perl
5.5%
Tcl
3.5%
Python
0.9%
Other
1.6%
Tree:
45d93eb824
git
/
contrib
/
coccinelle
/
free.cocci
18 lines
146 B
Raw
Blame
History
@@
expression E;
@@
- if (E)
free(E);
@@
expression E;
@@
- if (!E)
free(E);
@@
expression E;
@@
- free(E);
+ FREE_AND_NULL(E);
- E = NULL;
Copy Permalink