aboutsummaryrefslogtreecommitdiff
path: root/src/nix-worker
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-22 10:58:24 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-22 10:58:24 -0400
commit4aa1e5c55484ac02d28883292ee5c5806f5e4664 (patch)
tree880b2e66fef33411e35813ec5f00e39f9c88b2df /src/nix-worker
parentd950cfe70b2b70e938ece672dbccedfd4413c295 (diff)
Receive reserveSpace before calling startWork()
Otherwise we can get a SIGPOLL. Reported by Ludovic.
Diffstat (limited to 'src/nix-worker')
-rw-r--r--src/nix-worker/nix-worker.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc
index 80c0d5060..7099eb9ee 100644
--- a/src/nix-worker/nix-worker.cc
+++ b/src/nix-worker/nix-worker.cc
@@ -619,6 +619,10 @@ static void processConnection()
to.flush();
unsigned int clientVersion = readInt(from);
+ bool reserveSpace = true;
+ if (GET_PROTOCOL_MINOR(clientVersion) >= 11)
+ reserveSpace = readInt(from) != 0;
+
/* Send startup error messages to the client. */
startWork();
@@ -634,10 +638,6 @@ static void processConnection()
throw Error("if you run `nix-worker' as root, then you MUST set `build-users-group'!");
#endif
- bool reserveSpace = true;
- if (GET_PROTOCOL_MINOR(clientVersion) >= 11)
- reserveSpace = readInt(from) != 0;
-
/* Open the store. */
store = boost::shared_ptr<StoreAPI>(new LocalStore(reserveSpace));