mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
Don't wait for PID -1
The pid field can be -1 if forking the substituter process failed.
This commit is contained in:
parent
ad332e1718
commit
e529823635
1 changed files with 2 additions and 1 deletions
|
@ -358,7 +358,8 @@ LocalStore::~LocalStore()
|
|||
i->second.to.close();
|
||||
i->second.from.close();
|
||||
i->second.error.close();
|
||||
i->second.pid.wait(true);
|
||||
if (i->second.pid != -1)
|
||||
i->second.pid.wait(true);
|
||||
}
|
||||
} catch (...) {
|
||||
ignoreException();
|
||||
|
|
Loading…
Reference in a new issue