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

Commit 5369cc42 authored by Du Cheng's avatar Du Cheng Committed by Greg Kroah-Hartman
Browse files

drivers: video: fbcon: fix NULL dereference in fbcon_cursor()



commit 01faae5193d6190b7b3aa93dae43f514e866d652 upstream.

add null-check on function pointer before dereference on ops->cursor

Reported-by: default avatar <syzbot+b67aaae8d3a927f68d20@syzkaller.appspotmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: default avatarDu Cheng <ducheng2@gmail.com>
Link: https://lore.kernel.org/r/20210312081421.452405-1-ducheng2@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7eb9eb82
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1306,6 +1306,9 @@ static void fbcon_cursor(struct vc_data *vc, int mode)

	ops->cursor_flash = (mode == CM_ERASE) ? 0 : 1;

	if (!ops->cursor)
		return;

	ops->cursor(vc, info, mode, get_color(vc, info, c, 1),
		    get_color(vc, info, c, 0));
}