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
This commit is contained in:
Nick Kralevich 2019-04-05 10:08:44 -07:00
parent 55ba959c13
commit 2871411902
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}