Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 833444 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/Platform/Unix/Process.cpp (-6 / +1 lines)
Lines 118-128 namespace VeraCrypt Link Here
118
		throw_sys_if (fcntl (errPipe.GetReadFD(), F_SETFL, O_NONBLOCK) == -1);
118
		throw_sys_if (fcntl (errPipe.GetReadFD(), F_SETFL, O_NONBLOCK) == -1);
119
		throw_sys_if (fcntl (exceptionPipe.GetReadFD(), F_SETFL, O_NONBLOCK) == -1);
119
		throw_sys_if (fcntl (exceptionPipe.GetReadFD(), F_SETFL, O_NONBLOCK) == -1);
120
120
121
		vector <char> buffer (4096), stdOutput (4096), errOutput (4096), exOutput (4096);
121
		vector <char> buffer (4096, 0), stdOutput (4096, 0), errOutput (4096, 0), exOutput (4096, 0);
122
		buffer.clear ();
123
		stdOutput.clear ();
124
		errOutput.clear ();
125
		exOutput.clear ();
126
122
127
		Poller poller (outPipe.GetReadFD(), errPipe.GetReadFD(), exceptionPipe.GetReadFD());
123
		Poller poller (outPipe.GetReadFD(), errPipe.GetReadFD(), exceptionPipe.GetReadFD());
128
		int status, waitRes;
124
		int status, waitRes;
129
- 

Return to bug 833444