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/utils/translation/translationmanager.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/utils/translation/translationmanager.cpp') diff --git a/src/utils/translation/translationmanager.cpp b/src/utils/translation/translationmanager.cpp index 7c64c1590..5f9b5d587 100644 --- a/src/utils/translation/translationmanager.cpp +++ b/src/utils/translation/translationmanager.cpp @@ -93,8 +93,7 @@ bool TranslationManager::translateFile(const std::string &fileName, return false; int contentsLength; - char *fileContents = static_cast( - VirtFs::loadFile(fileName, contentsLength)); + char *fileContents = VirtFs::loadFile(fileName, contentsLength); if (!fileContents) { @@ -127,6 +126,6 @@ bool TranslationManager::translateFile(const std::string &fileName, while (getline(iss, line)) lines.push_back(line); - free(fileContents); + delete [] fileContents; return true; } -- cgit v1.2.3-60-g2f50