Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28714119 authored by Nick Kralevich's avatar Nick Kralevich
Browse files

zip_writer_test.cc: fix implicit integer truncation

converting from a size_t to a uint8_t results in a loss of precision,
which triggers ubsan's implicit-unsigned-integer-truncation checker.
Make the conversion explicit.

This change allows the ziparchive-tests to pass with ubsan enabled.

Test: atest ziparchive-tests
Test: compiles and boots
Bug: 122975762
Change-Id: I63f28b58f1ca1f4c57323494cb1f4a41e0f34fba
parent 55ba959c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -257,7 +257,7 @@ TEST_F(zipwriter, WriteCompressedZipFlushFull) {
  std::vector<uint8_t> buffer(kBufSize);
  size_t prev = 1;
  for (size_t i = 0; i < kBufSize; i++) {
    buffer[i] = i + prev;
    buffer[i] = static_cast<uint8_t>(i + prev);
    prev = i;
  }