From f6e75ba7fe220fdcf77c50d23a4f31ef828f75f5 Mon Sep 17 00:00:00 2001
From: Simon Glass <sjg@chromium.org>
Date: Sun, 21 Feb 2016 21:10:25 -0700
Subject: [PATCH] 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 <sjg@chromium.org>
---
 drivers/video/console_truetype.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/video/console_truetype.c b/drivers/video/console_truetype.c
index c249f047f5..e16f95a02c 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;
 		}
 
-- 
2.39.5