You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::ofstream(path) in IPC.cpp opens text mode. WCHAR bytes with 0x0A get CR/LF corrupted. Fix:std::ofstream(path, std::ios::binary)
Found by AI test review fleet
Bug
std::ofstream(path)in IPC.cpp opens text mode. WCHAR bytes with 0x0A get CR/LF corrupted.Fix:
std::ofstream(path, std::ios::binary)Found by AI test review fleet