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

Commit cca7eccd authored by Greg Hackmann's avatar Greg Hackmann Committed by Amit Pundir
Browse files

netfilter: xt_qtaguid: fix memory leak in seq_file handlers



Change-Id: I15b21230d52479d008a00d9e2191dda020f00925
Signed-off-by: default avatarGreg Hackmann <ghackmann@google.com>
parent 1db9c401
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1496,7 +1496,7 @@ static const struct file_operations proc_iface_stat_fmt_fops = {
	.open		= proc_iface_stat_fmt_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= seq_release,
	.release	= seq_release_private,
};

static int __init iface_stat_init(struct proc_dir_entry *parent_procdir)
@@ -2904,7 +2904,7 @@ static const struct file_operations proc_qtaguid_ctrl_fops = {
	.read		= seq_read,
	.write		= qtaguid_ctrl_proc_write,
	.llseek		= seq_lseek,
	.release	= seq_release,
	.release	= seq_release_private,
};

static const struct seq_operations proc_qtaguid_stats_seqops = {