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

Commit fb25f4a4 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "fbdev: core: Initialise structure to prevent kernel information leak"

parents d52e7ca6 60e28a0e
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1097,6 +1097,13 @@ static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
	void __user *argp = (void __user *)arg;
	long ret = 0;

	memset(&var, 0, sizeof(var));
	memset(&fix, 0, sizeof(fix));
	memset(&con2fb, 0, sizeof(con2fb));
	memset(&cmap_from, 0, sizeof(cmap_from));
	memset(&cmap, 0, sizeof(cmap));
	memset(&event, 0, sizeof(event));

	switch (cmd) {
	case FBIOGET_VSCREENINFO:
		if (!lock_fb_info(info))