mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
[IPV4] raw.c: kmalloc + memset conversion to kzalloc
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8adc546552
commit
4487b2f657
@ -900,8 +900,9 @@ static int raw_seq_open(struct inode *inode, struct file *file)
|
|||||||
{
|
{
|
||||||
struct seq_file *seq;
|
struct seq_file *seq;
|
||||||
int rc = -ENOMEM;
|
int rc = -ENOMEM;
|
||||||
struct raw_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
|
struct raw_iter_state *s;
|
||||||
|
|
||||||
|
s = kzalloc(sizeof(*s), GFP_KERNEL);
|
||||||
if (!s)
|
if (!s)
|
||||||
goto out;
|
goto out;
|
||||||
rc = seq_open(file, &raw_seq_ops);
|
rc = seq_open(file, &raw_seq_ops);
|
||||||
@ -910,7 +911,6 @@ static int raw_seq_open(struct inode *inode, struct file *file)
|
|||||||
|
|
||||||
seq = file->private_data;
|
seq = file->private_data;
|
||||||
seq->private = s;
|
seq->private = s;
|
||||||
memset(s, 0, sizeof(*s));
|
|
||||||
out:
|
out:
|
||||||
return rc;
|
return rc;
|
||||||
out_kfree:
|
out_kfree:
|
||||||
|
Loading…
Reference in New Issue
Block a user