[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-wget] [PATCH v2 01/27] new Metalink functionalities
From: |
Tim Ruehsen |
Subject: |
Re: [Bug-wget] [PATCH v2 01/27] new Metalink functionalities |
Date: |
Fri, 30 Sep 2016 12:01:49 +0200 |
User-agent: |
KMail/5.2.3 (Linux/4.7.0-1-amd64; KDE/5.25.0; x86_64; ; ) |
On Thursday, September 29, 2016 10:46:52 PM CEST Giuseppe Scrivano wrote:
> Hi Matthew,
>
> Matthew White <address@hidden> writes:
> > Series of patches to implement new Metalink functionalities.
@Matthew Great work to improve Wget's Metalink support !
Coverity dislikes
while ((n = FILE_SYSTEM_PREFIX_LEN (p)))
p += n;
(PW.ASSIGN_WHERE_COMPARE_MEANT)
It is a false positive, but if you make your intention clear like in
while ((n = FILE_SYSTEM_PREFIX_LEN (p)) > 0)
then Coverity should be silent (there are two places).
> > This series of patches supersedes the following:
> thanks for your work! I went quickly through it and it seems you
> addressed the reported issues, I will give it another look tomorrow or
> during the weekend.
> Given the size of the changes, I'll wait for other comments before
> merging it though.
> If there are no other comments, I will amend the minor things I reported
> before merging the series without the need of a v3.
@Giuseppe Please go ahead with merging.
Regards, Tim
signature.asc
Description: This is a digitally signed message part.
- [Bug-wget] [PATCH 21/27] New option --metalink-index to process Metalink application/metalink4+xml, (continued)
- [Bug-wget] [PATCH 21/27] New option --metalink-index to process Metalink application/metalink4+xml, Matthew White, 2016/09/29
- [Bug-wget] [PATCH 25/27] Bugfix: Set NULL variable due to --content-disposition to Metalink origin, Matthew White, 2016/09/29
- [Bug-wget] [PATCH 24/27] New: --trust-server-names saves Metalink/HTTP xml files using the "name" field, Matthew White, 2016/09/29
- [Bug-wget] [PATCH 26/27] New: --metalink-over-http Content-Type/Disposition Metalink/XML processing, Matthew White, 2016/09/29
- [Bug-wget] [PATCH 27/27] New: Metalink/XML v3 python class, update tests to use this class, Matthew White, 2016/09/29
- Re: [Bug-wget] [PATCH v2 01/27] new Metalink functionalities, Giuseppe Scrivano, 2016/09/29