mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 21:14:33 +00:00
Fix memory leak
call unicode version of the function directly
This commit is contained in:
parent
5608827429
commit
e1c9e3b9ed
@ -363,8 +363,8 @@ QString Utils::Fs::QDesktopServicesDataLocation()
|
|||||||
{
|
{
|
||||||
QString result;
|
QString result;
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
LPWSTR path=new WCHAR[256];
|
wchar_t path[MAX_PATH + 1] = {L'\0'};
|
||||||
if (SHGetSpecialFolderPath(0, path, CSIDL_LOCAL_APPDATA, FALSE))
|
if (SHGetSpecialFolderPathW(0, path, CSIDL_LOCAL_APPDATA, FALSE))
|
||||||
result = fromNativePath(QString::fromWCharArray(path));
|
result = fromNativePath(QString::fromWCharArray(path));
|
||||||
if (!QCoreApplication::applicationName().isEmpty())
|
if (!QCoreApplication::applicationName().isEmpty())
|
||||||
result += QLatin1String("/") + qApp->applicationName();
|
result += QLatin1String("/") + qApp->applicationName();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user