diff options
author | Jertzukka <Jertzukka@gmail.com> | 2024-06-24 10:07:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 09:07:19 +0200 |
commit | 292fe828408a90114ceedd1e16878c714ff5df8b (patch) | |
tree | 5a14c786bde99bfcd86110e44ef1171c74741c64 /src/Core | |
parent | 0ea32b02b971d2811423616bcd5038dbbb2789fb (diff) | |
download | VeraCrypt-292fe828408a90114ceedd1e16878c714ff5df8b.tar.gz VeraCrypt-292fe828408a90114ceedd1e16878c714ff5df8b.zip |
Fix regression in core service deserialization (#1367)
Introducing data into the standard out in the core service will
cause deserialization problems, as the pipes are used for interprocess
communication.
Diffstat (limited to 'src/Core')
-rw-r--r-- | src/Core/Unix/CoreUnix.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Core/Unix/CoreUnix.cpp b/src/Core/Unix/CoreUnix.cpp index 5caa733c..1868eb6d 100644 --- a/src/Core/Unix/CoreUnix.cpp +++ b/src/Core/Unix/CoreUnix.cpp @@ -728,7 +728,6 @@ namespace VeraCrypt } catch (...) { - wcout << L"Exception. Error mounting volume: " << wstring(*options.Path) << endl; try { VolumeInfoList mountedVolumes = GetMountedVolumes (*options.Path); |