diff options
author | George Hazan <ghazan@miranda.im> | 2022-07-19 23:22:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-07-19 23:24:36 +0300 |
commit | 0840c03307ee0d87195405a1c3641f2d0cf764f8 (patch) | |
tree | 472f51b59c57974fc4f7c764c5e43507d21042e4 /src | |
parent | 19577610078486badbfdf804e700a224d6ceadb2 (diff) |
fixes #3120 (Autoexec некорректно импортирует ini)
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/db_ini.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/db_ini.cpp b/src/mir_app/src/db_ini.cpp index 4109872d04..27e8ed79b3 100644 --- a/src/mir_app/src/db_ini.cpp +++ b/src/mir_app/src/db_ini.cpp @@ -309,7 +309,7 @@ static void ProcessIniFile(wchar_t* szIniPath, const char *szSafeSections, const char szSection[128]; szSection[0] = 0;
while (!feof(fp)) {
- char szLine[2048];
+ char szLine[16384];
if (fgets(szLine, sizeof(szLine), fp) == nullptr)
break;
LBL_NewLine:
|