mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
Fix crash in HttpSkipResponseCommand ctor
(Regression from the memory holes stuff; missed to commit :p)
This commit is contained in:
parent
c881f9fcad
commit
a44c71586a
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ HttpSkipResponseCommand::HttpSkipResponseCommand
|
|||
: AbstractCommand(cuid, req, fileEntry, requestGroup, e, s,
|
||||
httpConnection->getSocketRecvBuffer()),
|
||||
sinkFilterOnly_(true),
|
||||
totalLength_(httpResponse_->getEntityLength()),
|
||||
totalLength_(httpResponse->getEntityLength()),
|
||||
receivedBytes_(0),
|
||||
httpConnection_(httpConnection),
|
||||
httpResponse_(std::move(httpResponse)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue