mirror of
https://github.com/reactos/reactos.git
synced 2026-07-02 17:44:26 +08:00
- Fix regexpl build
svn path=/trunk/; revision=38906
This commit is contained in:
@@ -75,7 +75,7 @@ int CShellCommandSACL::Execute(CConsole &rConsole, CArgumentParser& rArguments)
|
||||
const TCHAR *pszParameter;
|
||||
const TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
||||
DWORD dwError;
|
||||
PSECURITY_DESCRIPTOR pSecurityDescriptor = NULL;
|
||||
PISECURITY_DESCRIPTOR pSecurityDescriptor = NULL;
|
||||
CSecurityDescriptor sd;
|
||||
HANDLE hThreadToken = INVALID_HANDLE_VALUE;
|
||||
|
||||
@@ -220,7 +220,7 @@ CheckSACLArgument:
|
||||
goto Error;
|
||||
}
|
||||
|
||||
pSecurityDescriptor = (PSECURITY_DESCRIPTOR) new unsigned char [dwSecurityDescriptorLength];
|
||||
pSecurityDescriptor = (PISECURITY_DESCRIPTOR) new unsigned char [dwSecurityDescriptorLength];
|
||||
if (!pSecurityDescriptor)
|
||||
{
|
||||
_tcsncpy(pszError_msg,_T("\nOut of memory.\n"),ERROR_MSG_BUFFER_SIZE-1);
|
||||
|
||||
Reference in New Issue
Block a user