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

Commit 35cbd4d4 authored by David Anderson's avatar David Anderson Committed by Gerrit Code Review
Browse files

Merge "libsnapshot: Fix crash in MakeXorBlockString test."

parents e8e5b5bb 8875abd9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -155,8 +155,8 @@ class OfflineSnapshotTest : public ::testing::Test {
    }

    std::string MakeXorBlockString() {
        std::string data(100, -1);
        data.resize(kBlockSize, 0);
        std::string data(kBlockSize, 0);
        memset(data.data(), 0xff, 100);
        return data;
    }