From 4b4adbc93dafcd020d9d79b2d9e376a80c6f5fef Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 31 Jul 2018 17:26:04 +0200 Subject: Fix race downloading into a sink This fixes 'error 10 while decompressing xz file'. https://hydra.nixos.org/build/78308551 --- src/libstore/download.cc | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/libstore/download.cc') diff --git a/src/libstore/download.cc b/src/libstore/download.cc index 07acd5d0e004..ecec0f205b62 100644 --- a/src/libstore/download.cc +++ b/src/libstore/download.cc @@ -718,15 +718,17 @@ void Downloader::download(DownloadRequest && request, Sink & sink) while (true) { checkInterrupt(); - if (state->quit) { - if (state->exc) std::rethrow_exception(state->exc); - break; - } - /* If no data is available, then wait for the download thread to wake us up. */ - if (state->data.empty()) + if (state->data.empty()) { + + if (state->quit) { + if (state->exc) std::rethrow_exception(state->exc); + break; + } + state.wait(state->avail); + } /* If data is available, then flush it to the sink and wake up the download thread if it's blocked on a full buffer. */ -- cgit 1.4.1