mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-03 01:12:58 -05:00
Compare commits
1 Commits
v2.1B2
...
pvt-dirfix
Author | SHA1 | Date | |
---|---|---|---|
9db17294da |
@ -1,15 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
## v2.1B2 (2024 Beta2)
|
|
||||||
|
|
||||||
- [FIX] Fixes a rare BSOD on recent versions of Windows. See commit a482183 for details.
|
|
||||||
|
|
||||||
- [FIX] Fixes a rare problem when using `NtCreateFile` to perform "relative" opens on a network drive (see GitHub issue #561).
|
|
||||||
|
|
||||||
- [FIX] Fixes a racing issue with two processes competing to start the FSD discovered during testing.
|
|
||||||
|
|
||||||
|
|
||||||
## v2.1B1 (2024 Beta1)
|
## v2.1B1 (2024 Beta1)
|
||||||
|
|
||||||
- [FIX] Fixes a rare BSOD on recent versions of Windows. See commit a482183 for details.
|
- [FIX] Fixes a rare BSOD on recent versions of Windows. See commit a482183 for details.
|
||||||
|
@ -67,7 +67,6 @@ CONTRIBUTOR LIST
|
|||||||
|John Oberschelp |john at oberschelp.net
|
|John Oberschelp |john at oberschelp.net
|
||||||
|John Tyner |jtyner at gmail.com
|
|John Tyner |jtyner at gmail.com
|
||||||
|Konstantinos Karakostas |noiredev at protonmail.com
|
|Konstantinos Karakostas |noiredev at protonmail.com
|
||||||
|Naoki Ikeguchi |me at s6n.jp
|
|
||||||
|Paweł Wegner (Google LLC, https://google.com) |lemourin at google.com
|
|Paweł Wegner (Google LLC, https://google.com) |lemourin at google.com
|
||||||
|Pedro Frejo (Arpa System, https://arpasystem.com) |pedro.frejo at arpasystem.com
|
|Pedro Frejo (Arpa System, https://arpasystem.com) |pedro.frejo at arpasystem.com
|
||||||
|Ronny Chan |ronny at ronnychan.ca
|
|Ronny Chan |ronny at ronnychan.ca
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
<MyCanonicalVersion>2.1</MyCanonicalVersion>
|
<MyCanonicalVersion>2.1</MyCanonicalVersion>
|
||||||
|
|
||||||
<MyProductVersion>2024 Beta2</MyProductVersion>
|
<MyProductVersion>2024 Beta1</MyProductVersion>
|
||||||
<MyProductStage>Beta</MyProductStage>
|
<MyProductStage>Beta</MyProductStage>
|
||||||
|
|
||||||
<MyCrossCert>DigiCertGlobalG3CodeSigningECCSHA3842021CA1.cer</MyCrossCert>
|
<MyCrossCert>DigiCertGlobalG3CodeSigningECCSHA3842021CA1.cer</MyCrossCert>
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#if !defined(WINFSP_DLL_INTERNAL)
|
#if !defined(WINFSP_DLL_INTERNAL)
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -348,7 +348,9 @@ static NTSTATUS FspFsvolQueryDirectoryCopyCache(
|
|||||||
|
|
||||||
FSP_FILE_NODE *FileNode = FileDesc->FileNode;
|
FSP_FILE_NODE *FileNode = FileDesc->FileNode;
|
||||||
|
|
||||||
if (ResetCache || FileDesc->DirInfo != FileNode->NonPaged->DirInfo)
|
if (ResetCache ||
|
||||||
|
FileDesc->DirInfo != FileNode->NonPaged->DirInfo ||
|
||||||
|
FileDesc->DirInfoCacheHint >= DirInfoSize)
|
||||||
FileDesc->DirInfoCacheHint = 0; /* reset the DirInfo hint if anything looks fishy! */
|
FileDesc->DirInfoCacheHint = 0; /* reset the DirInfo hint if anything looks fishy! */
|
||||||
|
|
||||||
FileDesc->DirInfo = FileNode->NonPaged->DirInfo;
|
FileDesc->DirInfo = FileNode->NonPaged->DirInfo;
|
||||||
|
@ -304,8 +304,6 @@ function Submit-AssetsToHwapi {
|
|||||||
"WINDOWS_v100_ARM64_CO_FULL"
|
"WINDOWS_v100_ARM64_CO_FULL"
|
||||||
"WINDOWS_v100_X64_NI_FULL"
|
"WINDOWS_v100_X64_NI_FULL"
|
||||||
"WINDOWS_v100_ARM64_NI_FULL"
|
"WINDOWS_v100_ARM64_NI_FULL"
|
||||||
"WINDOWS_v100_X64_GE_FULL"
|
|
||||||
"WINDOWS_v100_ARM64_GE_FULL"
|
|
||||||
)
|
)
|
||||||
foreach ($Signature in $DocRequestedSignatures) {
|
foreach ($Signature in $DocRequestedSignatures) {
|
||||||
if ($RequestedSignatures -contains $Signature) {
|
if ($RequestedSignatures -contains $Signature) {
|
||||||
|
Reference in New Issue
Block a user