diff options
Diffstat (limited to 'libbutl/process-run.txx')
-rw-r--r-- | libbutl/process-run.txx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbutl/process-run.txx b/libbutl/process-run.txx index d8b4847..54dceed 100644 --- a/libbutl/process-run.txx +++ b/libbutl/process-run.txx @@ -14,7 +14,10 @@ namespace butl { if (!v.empty ()) { - process_args_as (vars_, v, storage_); + std::string storage; + process_args_as (vars_, v, storage); + assert (storage.empty ()); // We don't expect the storage to be used. + vars_.push_back (nullptr); vars = vars_.data (); } |