repo.or.cz
/
splint-patched.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Some consistency changes to library & headers flags.
[splint-patched.git]
/
test
/
metastate
/
nullbranch2.c
blob
75b2e2fcc4054c563e3953391c10b9467fb910a2
1
void
ftest
(
char
*
fname
)
2
{
3
char
*
s
;
4
5
s
=
malloc
(
sizeof
(*
s
) *
20
);
6
7
if
(
s
==
NULL
)
8
{
9
;
10
}
11
else
12
{
13
*
s
=
'4'
;
14
free
(
s
);
15
}
16
}