diff options
author | Tom Rini <trini@konsulko.com> | 2017-09-01 12:57:03 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-01 12:57:03 -0400 |
commit | 1d20170467b079642be96996dcd71db64c3c365c (patch) | |
tree | 70ecec59b97ef608976fd48c68ef769f7ccc877d /common | |
parent | 6aee2ab68c362ace5a59f89a63abed82e0bf19e5 (diff) | |
parent | 0d1ae97c0299089e85a2980ac76e924e6d4447c6 (diff) |
Merge git://git.denx.de/u-boot-video
Diffstat (limited to 'common')
-rw-r--r-- | common/splash_source.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/splash_source.c b/common/splash_source.c index a21ad62f82d..e0defdebd6a 100644 --- a/common/splash_source.c +++ b/common/splash_source.c @@ -317,6 +317,11 @@ static int splash_load_fit(struct splash_location *location, u32 bmp_load_addr) return res; img_header = (struct image_header *)bmp_load_addr; + if (image_get_magic(img_header) != FDT_MAGIC) { + printf("Could not find FDT magic\n"); + return -EINVAL; + } + fit_size = fdt_totalsize(img_header); /* Read in entire FIT */ |