From 2b620905ca9c4f094bfaf3e2e976acbb6ab0d098 Mon Sep 17 00:00:00 2001 From: superp00t Date: Sun, 10 Dec 2023 22:13:44 -0500 Subject: [PATCH] fix(file): on Windows, GetFileInfo on StreamRecord needs to store the FileInfo in the FileParms --- bc/system/file/win/Stacked.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/bc/system/file/win/Stacked.cpp b/bc/system/file/win/Stacked.cpp index 72e838c..4dbed56 100644 --- a/bc/system/file/win/Stacked.cpp +++ b/bc/system/file/win/Stacked.cpp @@ -188,6 +188,7 @@ bool GetFileInfo(FileParms* parms) { } file->hasInfo = true; + parms->info = info; return WinFile::HandleFileInfoToBC(&byHandleInfo, info); }