MCPcopy Create free account
hub / github.com/AGWA/git-crypt / close_stdin

Method close_stdin

coprocess-win32.cpp:163–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161}
162
163void Coprocess::close_stdin ()
164{
165 delete stdin_pipe_ostream;
166 stdin_pipe_ostream = nullptr;
167 if (stdin_pipe_writer) {
168 CloseHandle(stdin_pipe_writer);
169 stdin_pipe_writer = nullptr;
170 }
171 if (stdin_pipe_reader) {
172 CloseHandle(stdin_pipe_reader);
173 stdin_pipe_reader = nullptr;
174 }
175}
176
177std::istream* Coprocess::stdout_pipe ()
178{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected