summaryrefslogtreecommitdiff
path: root/plugins/PluginUpdater
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-06-02 21:24:23 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-06-02 21:24:23 +0300
commit4985279039462adafdac1c9826b54a6b36dba5f6 (patch)
treef5c045b57d110c6e200595d3049d8afa7b9da31f /plugins/PluginUpdater
parent186c27d5ddb18f13f68db9c4d6426993ae4b7daa (diff)
PluginUpdater: temporary buffer size set to 4M
Diffstat (limited to 'plugins/PluginUpdater')
-rw-r--r--plugins/PluginUpdater/src/unzipfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/unzipfile.cpp b/plugins/PluginUpdater/src/unzipfile.cpp
index 58b12978dc..18a95fd726 100644
--- a/plugins/PluginUpdater/src/unzipfile.cpp
+++ b/plugins/PluginUpdater/src/unzipfile.cpp
@@ -19,7 +19,7 @@ Boston, MA 02111-1307, USA.
#include "stdafx.h"
-#define DATA_BUF_SIZE 65536
+#define DATA_BUF_SIZE (4 * 1024 * 1024)
static void PrepareFileName(wchar_t *dest, size_t destSize, const wchar_t *ptszPath, const wchar_t *ptszFileName)
{