This commit is contained in:
parent
be075b25f7
commit
afe07a7c79
|
@ -20,6 +20,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- fixed Files Resource Access - Browse for Folder - allows access to excluded folders [#4007](https://github.com/sandboxie-plus/Sandboxie/issues/4007)
|
||||
- fixed "ForceDisableAdminOnly" is weird [#4233](https://github.com/sandboxie-plus/Sandboxie/issues/4233)
|
||||
- fixed deadlock on no op condition when renaming file or folder [#4304](https://github.com/sandboxie-plus/Sandboxie/issues/4304)
|
||||
- fixed Could not move file or folder [#4329](https://github.com/sandboxie-plus/Sandboxie/issues/4329)
|
||||
|
||||
### Changed
|
||||
- validated compatibility with Windows build 27744 and updated DynData
|
||||
|
|
|
@ -785,11 +785,6 @@ _FX NTSTATUS File_RenameOperation(
|
|||
|
||||
Parms = &Iopb->Parameters;
|
||||
|
||||
#ifdef _M_ARM64
|
||||
if (! MmIsAddressValid(Parms->SetFileInformation.InfoBuffer)) // todo: arm64 // fix-me: why does this happen?
|
||||
return STATUS_ACCESS_DENIED;
|
||||
#endif
|
||||
|
||||
if(LinkOp) {
|
||||
|
||||
FILE_LINK_INFORMATION *infoL;
|
||||
|
|
|
@ -147,7 +147,7 @@ typedef struct _FLT_RELATED_OBJECTS {
|
|||
typedef CONST struct _FLT_RELATED_OBJECTS *PCFLT_RELATED_OBJECTS;
|
||||
|
||||
|
||||
#if !defined(_AMD64_) && !defined(_IA64_)
|
||||
#if !defined(_AMD64_) && !defined(_IA64_) && !defined(_ARM_) && !defined(_ARM64_)
|
||||
#include "pshpack4.h"
|
||||
#endif
|
||||
|
||||
|
@ -799,7 +799,7 @@ typedef union _FLT_PARAMETERS {
|
|||
} FLT_PARAMETERS, *PFLT_PARAMETERS;
|
||||
|
||||
|
||||
#if !defined(_AMD64_) && !defined(_IA64_)
|
||||
#if !defined(_AMD64_) && !defined(_IA64_) && !defined(_ARM_) && !defined(_ARM64_)
|
||||
#include "poppack.h"
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue