mirror of https://github.com/aria2/aria2
Fix crash in HttpSkipResponseCommand ctor
(Regression from the memory holes stuff; missed to commit :p)pull/180/head
parent
c881f9fcad
commit
a44c71586a
|
@ -75,7 +75,7 @@ HttpSkipResponseCommand::HttpSkipResponseCommand
|
||||||
: AbstractCommand(cuid, req, fileEntry, requestGroup, e, s,
|
: AbstractCommand(cuid, req, fileEntry, requestGroup, e, s,
|
||||||
httpConnection->getSocketRecvBuffer()),
|
httpConnection->getSocketRecvBuffer()),
|
||||||
sinkFilterOnly_(true),
|
sinkFilterOnly_(true),
|
||||||
totalLength_(httpResponse_->getEntityLength()),
|
totalLength_(httpResponse->getEntityLength()),
|
||||||
receivedBytes_(0),
|
receivedBytes_(0),
|
||||||
httpConnection_(httpConnection),
|
httpConnection_(httpConnection),
|
||||||
httpResponse_(std::move(httpResponse)),
|
httpResponse_(std::move(httpResponse)),
|
||||||
|
|
Loading…
Reference in New Issue