Merge "fix(rmmd): fix bug, raised by coverity, when zeroing manifest struct" into integration
diff --git a/services/std_svc/rmmd/rmmd_main.c b/services/std_svc/rmmd/rmmd_main.c
index a682e8e..033e868 100644
--- a/services/std_svc/rmmd/rmmd_main.c
+++ b/services/std_svc/rmmd/rmmd_main.c
@@ -234,7 +234,7 @@
 
 	/* 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) {