aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-04 03:07:21 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-04 03:07:21 +0000
commit2741ff4b6be8fd36a578feb6bee808e802cdb07d (patch)
treef7074c6181d86521ff3a524016747647a624f407
parent9c9e93eccae01a93d1e8793d445366530e31dfa4 (diff)
parent69310af0a28060b4964e1bf75dc00817bb48c894 (diff)
downloadlibbrillo-android14-qpr2-s3-release.tar.gz
Change-Id: I3c2937d3f41cef10ea0f6694487cb5cfd8b459a8
-rw-r--r--brillo/secure_blob_test.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/brillo/secure_blob_test.cc b/brillo/secure_blob_test.cc
index 7242e86..871c79c 100644
--- a/brillo/secure_blob_test.cc
+++ b/brillo/secure_blob_test.cc
@@ -255,9 +255,10 @@ class TestSecureAllocator : public SecureAllocator<T> {
TEST(SecureAllocator, ErasureOnDeallocation) {
// Make sure that the contents are cleared on deallocation.
TestSecureAllocator<char> e;
+ constexpr size_t test_string_sz = 15;
- char *test_string_addr = e.allocate(15);
- snprintf(test_string_addr, sizeof(test_string_addr), "Test String");
+ char *test_string_addr = e.allocate(test_string_sz);
+ snprintf(test_string_addr, test_string_sz, "Test String");
// Deallocate memory; the mock class should check for cleared data.
e.deallocate(test_string_addr, 15);