From f6e75ba7fe220fdcf77c50d23a4f31ef828f75f5 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 21 Feb 2016 21:10:25 -0700 Subject: video: truetype: Fix a memory leak on error When the resolution is not supported we should free the memory we don't plan to use. Reported-by: Coverity (CID: 135127) Signed-off-by: Simon Glass --- drivers/video/console_truetype.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/video/console_truetype.c') diff --git a/drivers/video/console_truetype.c b/drivers/video/console_truetype.c index c249f04..e16f95a 100644 --- a/drivers/video/console_truetype.c +++ b/drivers/video/console_truetype.c @@ -289,6 +289,7 @@ static int console_truetype_putc_xy(struct udevice *dev, uint x, uint y, } #endif default: + free(data); return -ENOSYS; } -- cgit v1.1