Compare commits

..

5 Commits

Author SHA1 Message Date
2da97d48f5 tools: make-release: add new signatures 2024-09-11 14:48:55 +01:00
7c5dc48414 build: version: 2024 Beta2 2024-09-11 14:46:38 +01:00
93c057571a changelog: 2024 Beta2 2024-09-11 13:23:41 +01:00
da16d0e6ea Merge pull request #567 from siketyan/fix/string-h-import
fix: Add missing string.h import in winfsp_fuse.h
2024-09-10 09:25:12 +01:00
dbaee25ed2 fix: Add missing string.h import in winfsp_fuse.h
Signed-off-by: Naoki Ikeguchi <me@s6n.jp>
2024-09-10 01:02:29 +09:00
6 changed files with 15 additions and 4 deletions

View File

@ -1,6 +1,15 @@
# 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.

View File

@ -67,6 +67,7 @@ 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

View File

@ -20,7 +20,7 @@
<MyCanonicalVersion>2.1</MyCanonicalVersion> <MyCanonicalVersion>2.1</MyCanonicalVersion>
<MyProductVersion>2024 Beta1</MyProductVersion> <MyProductVersion>2024 Beta2</MyProductVersion>
<MyProductStage>Beta</MyProductStage> <MyProductStage>Beta</MyProductStage>
<MyCrossCert>DigiCertGlobalG3CodeSigningECCSHA3842021CA1.cer</MyCrossCert> <MyCrossCert>DigiCertGlobalG3CodeSigningECCSHA3842021CA1.cer</MyCrossCert>

View File

@ -27,6 +27,7 @@
#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

View File

@ -348,9 +348,7 @@ static NTSTATUS FspFsvolQueryDirectoryCopyCache(
FSP_FILE_NODE *FileNode = FileDesc->FileNode; FSP_FILE_NODE *FileNode = FileDesc->FileNode;
if (ResetCache || if (ResetCache || FileDesc->DirInfo != FileNode->NonPaged->DirInfo)
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;

View File

@ -304,6 +304,8 @@ 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) {