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
Constructors such as FileHandle.init(forReadingFrom:)should explicitly pass _O_BINARY to _openFileDescriptorForURL to control the translation mode; else the behavior is subject to the process global translation state, leading to inconsistent behavior.
The text was updated successfully, but these errors were encountered:
See https://learn.microsoft.com/en-us/cpp/c-runtime-library/text-and-binary-mode-file-i-o?view=msvc-170
Constructors such as
FileHandle.init(forReadingFrom:)
should explicitly pass_O_BINARY
to_openFileDescriptorForURL
to control the translation mode; else the behavior is subject to the process global translation state, leading to inconsistent behavior.The text was updated successfully, but these errors were encountered: