Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Nov 14, 2024
1 parent be075b2 commit afe07a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions Sandboxie/core/drv/file_flt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions Sandboxie/core/drv/my_fltkernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit afe07a7

Please sign in to comment.