~ubuntu-branches/ubuntu/wily/aria2/wily-proposed

« back to all changes in this revision

Viewing changes to src/TruncFileAllocationIterator.cc

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2013-05-06 15:03:54 UTC
  • mfrom: (2.5.18 sid)
  • Revision ID: package-import@ubuntu.com-20130506150354-jt3mjk1q1ukmn0go
Tags: 1.17.0-1
* New upstream release.
* debian/control:
  + Set priority to optional from extra (Closes: #697659).

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
void TruncFileAllocationIterator::allocateChunk()
48
48
{
49
 
  stream_->truncate(totalLength_);
 
49
  stream_->allocate(0, totalLength_, true);
50
50
  offset_ = totalLength_;
51
51
}
52
52