From b7f32cea30174e391027fecc9d431ca16b2f87c2 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 25 Oct 2022 10:24:53 +0200 Subject: All passing to process ownership to one end of pipe --- libbutl/process-run.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbutl/process-run.cxx') diff --git a/libbutl/process-run.cxx b/libbutl/process-run.cxx index a5014f6..b044ea1 100644 --- a/libbutl/process-run.cxx +++ b/libbutl/process-run.cxx @@ -24,7 +24,7 @@ namespace butl try { return process (pp, cmd, - in, out, err, + move (in), move (out), move (err), cwd != nullptr ? cwd->string ().c_str () : nullptr, envvars); } -- cgit v1.1