aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext3/super.c
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2011-08-04 12:29:31 +0200
committerJan Kara <jack@suse.cz>2011-08-17 11:41:21 +0200
commit46130222df8567ffde773216044c7611a1e71d51 (patch)
tree1d6b41d78c6e1c957994a7fc1179cd32f80e8de6 /fs/ext3/super.c
parentfs/ext2/balloc.c: delete useless initialization (diff)
downloadlinux-dev-46130222df8567ffde773216044c7611a1e71d51.tar.xz
linux-dev-46130222df8567ffde773216044c7611a1e71d51.zip
fs/ext3/balloc.c: delete useless initialization
Delete nontrivial initialization that is immediately overwritten by the result of an allocation function. The semantic match that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ type T; identifier i; expression e; @@ ( T i = \(0\|NULL\|ERR_PTR(...)\); | -T i = e; +T i; ) ... when != i i = \(kzalloc\|kcalloc\|kmalloc\)(...); // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions