diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-29 18:31:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-29 18:31:00 +0300 |
commit | 7132f71cf010e4f13eb27c1a24d8878aa984b43f (patch) | |
tree | 330ad08a5ae15d0f4dc2d13461de1d5a47a69fe6 /src/integrity_unittest.cc | |
parent | d9c0d1c3b2800b0c995393426b65a031203ca2f0 (diff) | |
download | plus-7132f71cf010e4f13eb27c1a24d8878aa984b43f.tar.gz plus-7132f71cf010e4f13eb27c1a24d8878aa984b43f.tar.bz2 plus-7132f71cf010e4f13eb27c1a24d8878aa984b43f.tar.xz plus-7132f71cf010e4f13eb27c1a24d8878aa984b43f.zip |
Remove extra memory copy in VirtFs::loadFile.
Also add const into VirtFs::loadFile.
Diffstat (limited to 'src/integrity_unittest.cc')
-rw-r--r-- | src/integrity_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integrity_unittest.cc b/src/integrity_unittest.cc index aea7fe073..31157b0b6 100644 --- a/src/integrity_unittest.cc +++ b/src/integrity_unittest.cc @@ -76,7 +76,7 @@ static bool compareBuffers(const unsigned char *const buf2) { bool isCorrect(true); int sz = 0; - unsigned char *buf1 = reinterpret_cast<unsigned char*>( + const unsigned char *buf1 = reinterpret_cast<const unsigned char*>( VirtFs::loadFile("hide.png", sz)); REQUIRE(buf1 != nullptr); REQUIRE(sz == 368); |