mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-22 20:24:27 +01:00
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>
This commit is contained in:
parent
595af9db24
commit
f6e75ba7fe
1 changed files with 1 additions and 0 deletions
|
|
@ -289,6 +289,7 @@ static int console_truetype_putc_xy(struct udevice *dev, uint x, uint y,
|
|||
}
|
||||
#endif
|
||||
default:
|
||||
free(data);
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue