# File lib/sup/mbox/loader.rb, line 88
  def correct_offset!
    @mutex.synchronize do
      @f.seek cur_offset
      string = ""
      until @f.eof? || MBox::is_break_line?(l = @f.gets)
        string << l
      end
      self.cur_offset += string.length
    end
  end