summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-03-29 18:31:00 +0300
committerAndrei Karas <akaras@inbox.ru>2017-03-29 18:31:00 +0300
commit7132f71cf010e4f13eb27c1a24d8878aa984b43f (patch)
tree330ad08a5ae15d0f4dc2d13461de1d5a47a69fe6 /src/gui
parentd9c0d1c3b2800b0c995393426b65a031203ca2f0 (diff)
downloadplus-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/gui')
-rw-r--r--src/gui/windows/updaterwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/updaterwindow.cpp b/src/gui/windows/updaterwindow.cpp
index 082db75cd..6ef065eed 100644
--- a/src/gui/windows/updaterwindow.cpp
+++ b/src/gui/windows/updaterwindow.cpp
@@ -1069,7 +1069,7 @@ bool UpdaterWindow::validateFile(const std::string &filePath,
unsigned long UpdaterWindow::getFileHash(const std::string &filePath)
{
int size = 0;
- char *const buf = VirtFs::loadFile(filePath, size);
+ const char *const buf = VirtFs::loadFile(filePath, size);
if (buf == nullptr)
return 0;
unsigned long res = Net::Download::adlerBuffer(buf, size);