From 5f2e203df51e33a4d55970631ba5f338905e01ca Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Fri, 8 May 2020 12:23:04 +0000 Subject: [PATCH] fix prior git-svn-id: svn://kolibrios.org@7898 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/other/table/calc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/other/table/calc.cpp b/programs/other/table/calc.cpp index b803239b0e..c981f36485 100644 --- a/programs/other/table/calc.cpp +++ b/programs/other/table/calc.cpp @@ -577,14 +577,14 @@ char *Kos_FileRead(kosFileInfo &fileInfo, int &code) char GetCsvSeparator(char *fname) { - char buffer[4096]; + char buffer[512]; kosFileInfo fileInfo; DWORD load_size; - if (filesize < 4096) { + if (filesize < 512) { load_size = filesize; } else { - load_size = 4096; + load_size = 512; } rtlDebugOutString(fname);