Change the ACL on our %temp% directories (bug #1125)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6657 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
0cac95475e
commit
d7d6c3561d
7 changed files with 63 additions and 16 deletions
|
@ -3592,8 +3592,8 @@ again:
|
|||
// Delete $0 [simple, nothing that could clash with special temp permissions]
|
||||
ret=add_entry_direct(EW_DELETEFILE, zero_offset, DEL_SIMPLE);
|
||||
if (ret != PS_OK) return ret;
|
||||
// CraeteDirectory $0 - a dir instead of that temp file
|
||||
ret=add_entry_direct(EW_CREATEDIR, zero_offset);
|
||||
// CreateDirectory $0 - a dir instead of that temp file
|
||||
ret=add_entry_direct(EW_CREATEDIR, zero_offset, 0, 1);
|
||||
if (ret != PS_OK) return ret;
|
||||
// IfErrors Initialize_____Plugins_error - detect errors
|
||||
ret=add_entry_direct(EW_IFFLAG, ns_label.add(_T("Initialize_____Plugins_error"),0), 0, FLAG_OFFSET(exec_error));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue