repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
param_used: fix use after free
[smatch.git]
/
validation
/
anon-union.c
blob
487f957b8eb181ab057a81179a5afe143e196ac6
1
struct
s
{
2
union
{
3
int
val
;
4
};
5
};
6
7
static struct
s foo
= { .
val
=
5
, };
8
/*
9
* check-name: test anonymous union initializer
10
*/
11