summaryrefslogtreecommitdiff
path: root/tests/vb2_common_tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/vb2_common_tests.c')
-rw-r--r--tests/vb2_common_tests.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/vb2_common_tests.c b/tests/vb2_common_tests.c
index 199b1e05..89c8307d 100644
--- a/tests/vb2_common_tests.c
+++ b/tests/vb2_common_tests.c
@@ -665,8 +665,7 @@ static void test_verify_fw_preamble(void)
/* Now that the total size is known, create the real preamble */
buf_size = fp.c.total_size;
- buf = malloc(buf_size);
- memset(buf, 0, buf_size);
+ buf = calloc(1, buf_size);
memcpy(buf, &fp, sizeof(fp));
memcpy(buf + fp.c.fixed_size, desc, sizeof(desc));