Commit 0d3feba9 authored by Sandrine Bailleux's avatar Sandrine Bailleux
Browse files

Trusty: Fix sanity check on NS entry point



This patch fixes the sanity check on the non-secure entrypoint value
returned by bl31_plat_get_next_image_ep_info(). This issue has been
reported by Coverity Scan Online:

  CID 264893 (#1 of 1): Dereference null return value (NULL_RETURNS)
  Dereferencing a null pointer ns_ep_info.

Change-Id: Ia0f64d8c8b005f042608f1422ecbd42bc90b2fb4
Signed-off-by: default avatarSandrine Bailleux <sandrine.bailleux@arm.com>
parent ed811260
...@@ -451,7 +451,7 @@ static int32_t trusty_setup(void) ...@@ -451,7 +451,7 @@ static int32_t trusty_setup(void)
uint32_t spsr; uint32_t spsr;
ns_ep_info = bl31_plat_get_next_image_ep_info(NON_SECURE); ns_ep_info = bl31_plat_get_next_image_ep_info(NON_SECURE);
if (!ep_info) { if (ns_ep_info == NULL) {
NOTICE("Trusty: non-secure image missing.\n"); NOTICE("Trusty: non-secure image missing.\n");
return -1; return -1;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment