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

Method close_stdin

coprocess-unix.cpp:79–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79void Coprocess::close_stdin ()
80{
81 delete stdin_pipe_ostream;
82 stdin_pipe_ostream = nullptr;
83 if (stdin_pipe_writer != -1) {
84 close(stdin_pipe_writer);
85 stdin_pipe_writer = -1;
86 }
87 if (stdin_pipe_reader != -1) {
88 close(stdin_pipe_reader);
89 stdin_pipe_reader = -1;
90 }
91}
92
93std::istream* Coprocess::stdout_pipe ()
94{

Callers 2

exec_command_with_inputFunction · 0.45
get_encrypted_filesFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected