Merge pull request #9564 from dzmat/littlfix

Replace magic number with system define.
This commit is contained in:
sledgehammer999
2018-09-22 14:10:11 +03:00
committed by GitHub

View File

@@ -581,7 +581,7 @@ QString Utils::Misc::libtorrentVersionString()
QString Utils::Misc::windowsSystemPath()
{
static const QString path = []() -> QString {
WCHAR systemPath[64] = {0};
WCHAR systemPath[MAX_PATH] = {0};
GetSystemDirectoryW(systemPath, sizeof(systemPath) / sizeof(WCHAR));
return QString::fromWCharArray(systemPath);
}();