aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdityaK <appujee@google.com>2023-11-02 19:56:07 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-11-02 19:56:07 +0000
commit5109089374641b51b355543e236a61e66522a9d1 (patch)
treef7074c6181d86521ff3a524016747647a624f407
parent9c9e93eccae01a93d1e8793d445366530e31dfa4 (diff)
parent08534e7ff995196f3de9f225da29e6691511fb7d (diff)
downloadlibbrillo-5109089374641b51b355543e236a61e66522a9d1.tar.gz
Fix snprintf format error am: 08534e7ff9
Original change: https://android-review.googlesource.com/c/platform/external/libbrillo/+/2813336 Change-Id: Ife161c522add77f9b50508f5ba26c58f26d2120b Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-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);