mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
2010-11-11 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Create SharedHandle outside of function call to avoid unexpected memory leak. * src/AnnounceList.cc * src/FtpNegotiationCommand.cc * src/HttpResponseCommand.cc * src/RequestGroup.cc * src/RequestGroupMan.cc * src/UTMetadataPostDownloadHandler.cc * src/download_helper.cc
This commit is contained in:
parent
e728385bc9
commit
bcf4593bda
8 changed files with 42 additions and 31 deletions
|
@ -293,11 +293,10 @@ bool HttpResponseCommand::handleDefaultEncoding
|
|||
(const SharedHandle<HttpResponse>& httpResponse)
|
||||
{
|
||||
SharedHandle<HttpRequest> httpRequest = httpResponse->getHttpRequest();
|
||||
getRequestGroup()->adjustFilename
|
||||
(SharedHandle<BtProgressInfoFile>(new DefaultBtProgressInfoFile
|
||||
(getDownloadContext(),
|
||||
SharedHandle<PieceStorage>(),
|
||||
getOption().get())));
|
||||
SharedHandle<BtProgressInfoFile> progressInfoFile
|
||||
(new DefaultBtProgressInfoFile
|
||||
(getDownloadContext(), SharedHandle<PieceStorage>(), getOption().get()));
|
||||
getRequestGroup()->adjustFilename(progressInfoFile);
|
||||
getRequestGroup()->initPieceStorage();
|
||||
|
||||
if(getOption()->getAsBool(PREF_DRY_RUN)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue