[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: challenge: Be defensive in the size passed to the progress report
From: |
guix-commits |
Subject: |
04/05: challenge: Be defensive in the size passed to the progress reporter. |
Date: |
Wed, 12 May 2021 18:20:33 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 3cde5231aa78aa5e31b27888cd78ee0b250a7a1c
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed May 12 23:38:13 2021 +0200
challenge: Be defensive in the size passed to the progress reporter.
Possibly fixes <https://bugs.gnu.org/48045>.
Reported by Bone Baboon <bone.baboon@disroot.org>.
* guix/scripts/challenge.scm (call-with-nar): Rename second value
returned by 'http-fetch' to match reality. Change second argument to
'progress-reporter/file'.
---
guix/scripts/challenge.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/guix/scripts/challenge.scm b/guix/scripts/challenge.scm
index 4ec3be9..07477f8 100644
--- a/guix/scripts/challenge.scm
+++ b/guix/scripts/challenge.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015, 2016, 2017, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2015, 2016, 2017, 2019, 2020, 2021 Ludovic Courtès
<ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -253,10 +253,11 @@ taken since we do not import the archives."
NARINFO."
(let*-values (((uri compression size)
(narinfo-best-uri narinfo))
- ((port response)
+ ((port actual-size)
(http-fetch uri)))
(define reporter
- (progress-reporter/file (narinfo-path narinfo) size
+ (progress-reporter/file (narinfo-path narinfo)
+ (max size (or actual-size 0)) ;defensive
#:abbreviation (const (uri-host uri))))
(define result