mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00
Merge "fix(rmmd): fix bug, raised by coverity, when zeroing manifest struct" into integration
This commit is contained in:
commit
2cbc8952a5
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ int rmmd_setup(void)
|
|||
|
||||
/* Zero out and load the boot manifest at the beginning of the share area */
|
||||
manifest = (struct rmm_manifest *)shared_buf_base;
|
||||
memset((void *)manifest, 0, sizeof(manifest));
|
||||
(void)memset((void *)manifest, 0, sizeof(struct rmm_manifest));
|
||||
|
||||
rc = plat_rmmd_load_manifest(manifest);
|
||||
if (rc != 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue