This website requires JavaScript.
Explore
Sign In
mirror
/
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
master
git
/
contrib
/
coccinelle
/
tests
/
free.c
12 lines
104 B
C
Raw
Permalink
Blame
History
int
use_FREE_AND_NULL
(
int
*
v
)
{
free
(
*
v
)
;
*
v
=
NULL
;
}
int
need_no_if
(
int
*
v
)
{
if
(
v
)
free
(
v
)
;
}
View Git Blame
Copy Permalink