Add #ifdef Q_OS_WIN guard.

This commit is contained in:
rockihack 2017-02-25 01:35:47 +01:00
parent d0ebaff7b4
commit 153dc620c8

View File

@ -256,6 +256,7 @@ bool createWindowsDACL()
{
bool bSuccess = false;
#ifdef Q_OS_WIN
// Access control list
PACL pACL = nullptr;
DWORD cbACL = 0;
@ -341,6 +342,7 @@ Cleanup:
if (pACL != nullptr) {
HeapFree(GetProcessHeap(), 0, pACL);
}
#endif
return bSuccess;
}