diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-28 20:20:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-28 23:25:13 +0300 |
commit | 75a5173176adfc4bc417c10df137d9ea8d90d403 (patch) | |
tree | 2d095e72f084ff96ee5ce3608453d98da0eda5d7 /src/integrity_unittest.cc | |
parent | b6831b3b3053b1777402a35d8b3ae3cca2f62bc4 (diff) | |
download | ManaVerse-75a5173176adfc4bc417c10df137d9ea8d90d403.tar.gz ManaVerse-75a5173176adfc4bc417c10df137d9ea8d90d403.tar.bz2 ManaVerse-75a5173176adfc4bc417c10df137d9ea8d90d403.tar.xz ManaVerse-75a5173176adfc4bc417c10df137d9ea8d90d403.zip |
Change memory allocation in Virtfs::LoadFile from calloc to new.
Diffstat (limited to 'src/integrity_unittest.cc')
-rw-r--r-- | src/integrity_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/integrity_unittest.cc b/src/integrity_unittest.cc index 280aa1712..aea7fe073 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 = static_cast<unsigned char*>( + unsigned char *buf1 = reinterpret_cast<unsigned char*>( VirtFs::loadFile("hide.png", sz)); REQUIRE(buf1 != nullptr); REQUIRE(sz == 368); @@ -90,7 +90,7 @@ static bool compareBuffers(const unsigned char *const buf2) buf2[f]); } } - free(buf1); + delete [] buf1; return isCorrect; } |