video: vidconsole: Fix null dereference of ops->measure
authorBin Meng <bmeng@tinylab.org>
Thu, 3 Aug 2023 09:32:41 +0000 (17:32 +0800)
committerAnatolij Gustschin <agust@denx.de>
Sun, 13 Aug 2023 21:08:15 +0000 (23:08 +0200)
commit01c76f1a64ba8cb3da9b26be481e289ee16960f0
treebe69afccfff44910596b7d9685ce4af1fdd6bda0
parenta5899cc69a99379f01e8e2f9f98e0e09b24f1656
video: vidconsole: Fix null dereference of ops->measure

At present vidconsole_measure() tests ops->select_font before calling
ops->measure, which would result in a null dereference when the console
driver provides no ops for measure.

Fixes: b828ed7d7929 ("console: Allow measuring the bounding box of text")
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/video/vidconsole-uclass.c