Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4487b2f6 authored by Mariusz Kozlowski's avatar Mariusz Kozlowski Committed by David S. Miller
Browse files

[IPV4] raw.c: kmalloc + memset conversion to kzalloc

parent 8adc5465
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -900,8 +900,9 @@ static int raw_seq_open(struct inode *inode, struct file *file)
{
	struct seq_file *seq;
	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)
		goto out;
	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->private = s;
	memset(s, 0, sizeof(*s));
out:
	return rc;
out_kfree: