This commit is contained in:
DavidXanatos 2024-01-31 22:00:15 +01:00
parent 77184d0e66
commit 027e08a9b6
4 changed files with 11 additions and 11 deletions

View File

@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.12.9 / 5.67.9] - 2024-02-xx
### Fixed
- Fixed issue with Symlink Resolver introduced in previosue build [#3481](https://github.com/sandboxie-plus/Sandboxie/issues/3481)
## [1.12.8 / 5.67.8] - 2024-01-31
### Added

View File

@ -21,8 +21,8 @@
#ifndef _MY_VERSION_H
#define _MY_VERSION_H
#define MY_VERSION_BINARY 5,67,8
#define MY_VERSION_STRING "5.67.8"
#define MY_VERSION_BINARY 5,67,9
#define MY_VERSION_STRING "5.67.9"
#define MY_ABI_VERSION 0x56700
// These #defines are used by either Resource Compiler or NSIS installer

View File

@ -930,7 +930,6 @@ _FX NTSTATUS File_GetName(
BOOLEAN have_tilde;
BOOLEAN convert_links_again;
BOOLEAN is_boxed_path;
BOOLEAN free_true_path;
#ifdef WOW64_FS_REDIR
BOOLEAN convert_wow64_link = (File_Wow64FileLink) ? TRUE : FALSE;
@ -962,8 +961,6 @@ _FX NTSTATUS File_GetName(
drive = NULL;
guid = NULL;
free_true_path = FALSE;
//
// if a root handle is specified, we query the full name of the
// root file, and append the ObjectName
@ -1376,8 +1373,6 @@ check_sandbox_prefix:
// then continue to create the copy path
//
free_true_path = TRUE;
if (OutFlags) {
ULONG mp_flags = File_MatchPath(TruePath, OutFlags);
if (PATH_IS_OPEN(mp_flags))
@ -1436,9 +1431,6 @@ check_sandbox_prefix:
name[1] = L'\0';
}
if (free_true_path)
Dll_Free(TruePath);
//
// debugging helper
//

View File

@ -2,7 +2,7 @@
#define VERSION_MJR 1
#define VERSION_MIN 12
#define VERSION_REV 8
#define VERSION_REV 9
#define VERSION_UPD 0
#ifndef STR