1.12.5
This commit is contained in:
parent
5b67b3fbef
commit
87305d9e8a
|
@ -21,8 +21,8 @@
|
|||
#ifndef _MY_VERSION_H
|
||||
#define _MY_VERSION_H
|
||||
|
||||
#define MY_VERSION_BINARY 5,67,4
|
||||
#define MY_VERSION_STRING "5.67.4"
|
||||
#define MY_VERSION_BINARY 5,67,5
|
||||
#define MY_VERSION_STRING "5.67.5"
|
||||
#define MY_ABI_VERSION 0x56700
|
||||
|
||||
// These #defines are used by either Resource Compiler or NSIS installer
|
||||
|
|
|
@ -7393,14 +7393,16 @@ _FX BOOLEAN SbieDll_TranslateNtToDosPath(WCHAR *path)
|
|||
// to make this work we use the \\.\ prefix which replaces \Device\
|
||||
// and is accepted by regular non NT Win32 APIs
|
||||
//
|
||||
// Note: fix me this makes chrome crash handler hang
|
||||
//
|
||||
|
||||
if (_wcsnicmp(path, L"\\Device\\", 8) == 0) {
|
||||
/*if (_wcsnicmp(path, L"\\Device\\", 8) == 0) {
|
||||
|
||||
wcscpy(path, L"\\\\.\\");
|
||||
wmemmove(path + 4, path + 8, wcslen(path + 8) + 1);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
}*/
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#define VERSION_MJR 1
|
||||
#define VERSION_MIN 12
|
||||
#define VERSION_REV 4
|
||||
#define VERSION_REV 5
|
||||
#define VERSION_UPD 0
|
||||
|
||||
#ifndef STR
|
||||
|
|
Loading…
Reference in New Issue