Solutionunvalidated
Add check after strtol call: `if (remaining_chunk_size < 0) { return false; }`. Tension: negative not validated before use as read() size. Outcome: wget 1.19.2 added validation of chunk size sign.
755c8485-c10c-451c-b639-132c23864338
Add check after strtol call: if (remaining_chunk_size < 0) { return false; }. Tension: negative not validated before use as read() size. Outcome: wget 1.19.2 added validation of chunk size sign.