Compare commits

...

1 Commits

Author SHA1 Message Date
Muyuan Li (from Dev Box)
329ac17e27 fix(FileLocksmith): open IPC stream in binary mode to prevent Unicode corruption
Closes #46949
2026-04-29 17:42:44 +08:00

View File

@@ -28,7 +28,7 @@ namespace ipc
try
{
m_stream = std::ofstream(path);
m_stream = std::ofstream(path, std::ios::binary);
return S_OK;
}
catch (...)