diff options
-rw-r--r-- | gold/script.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gold/script.cc b/gold/script.cc index 6600411..582f6b7 100644 --- a/gold/script.cc +++ b/gold/script.cc @@ -307,6 +307,7 @@ Lex::read_file(std::string* contents) { this->input_file_->file().read(off, sizeof buf, buf, &got); contents->append(reinterpret_cast<char*>(&buf[0]), got); + off += got; } while (got == sizeof buf); } |