Unverified Commit 704967e7 by Edward Thomson Committed by GitHub

Merge pull request #6693 from libgit2/ethomson/close

process: don't try to close the status
parents f52bc4e5 d963f638
...@@ -556,7 +556,6 @@ int git_process_close(git_process *process) ...@@ -556,7 +556,6 @@ int git_process_close(git_process *process)
CLOSE_FD(process->child_in); CLOSE_FD(process->child_in);
CLOSE_FD(process->child_out); CLOSE_FD(process->child_out);
CLOSE_FD(process->child_err); CLOSE_FD(process->child_err);
CLOSE_FD(process->status);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment