From 75a5173176adfc4bc417c10df137d9ea8d90d403 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 28 Mar 2017 20:20:54 +0300 Subject: Change memory allocation in Virtfs::LoadFile from calloc to new. --- src/integrity_unittest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/integrity_unittest.cc') 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 *buf1 = reinterpret_cast( 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; } -- cgit v1.2.3-60-g2f50