View | Details | Raw Unified | Return to bug 46105
Collapse All | Expand All

(-)a/methods/ftp.cc (-1 / +1 lines)
Lines 1048-1054 bool FtpMethod::Fetch(FetchItem *Itm) Link Here
1048
      URIStart(Res);
1048
      URIStart(Res);
1049
1049
1050
      FailFile = Itm->DestFile;
1050
      FailFile = Itm->DestFile;
1051
      FailFile.c_str();   // Make sure we dont do a malloc in the signal handler
1051
      (void)FailFile.c_str();   // Make sure we dont do a malloc in the signal handler
1052
      FailFd = Fd.Fd();
1052
      FailFd = Fd.Fd();
1053
1053
1054
      bool Missing;
1054
      bool Missing;
(-)a/methods/http.cc (-1 / +1 lines)
Lines 1011-1017 int HttpMethod::DealWithHeaders(FetchResult &Res,ServerState *Srv) Link Here
1011
      return 5;
1011
      return 5;
1012
1012
1013
   FailFile = Queue->DestFile;
1013
   FailFile = Queue->DestFile;
1014
   FailFile.c_str();   // Make sure we dont do a malloc in the signal handler
1014
   (void)FailFile.c_str();   // Make sure we dont do a malloc in the signal handler
1015
   FailFd = File->Fd();
1015
   FailFd = File->Fd();
1016
   FailTime = Srv->Date;
1016
   FailTime = Srv->Date;
1017
1017
(-)a/methods/rsh.cc (-2 / +1 lines)
Lines 475-481 bool RSHMethod::Fetch(FetchItem *Itm) Link Here
475
      URIStart(Res);
475
      URIStart(Res);
476
476
477
      FailFile = Itm->DestFile;
477
      FailFile = Itm->DestFile;
478
      FailFile.c_str();   // Make sure we dont do a malloc in the signal handler
478
      (void)FailFile.c_str();   // Make sure we dont do a malloc in the signal handler
479
      FailFd = Fd.Fd();
479
      FailFd = Fd.Fd();
480
480
481
      bool Missing;
481
      bool Missing;
482
- 

Return to bug 46105