summaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@gmail.com>2015-06-02 14:12:56 -0700
committerCary Coutant <ccoutant@gmail.com>2015-06-02 14:13:32 -0700
commit775ed62ec53a38c656300d4ce50ae5a56c0d38a2 (patch)
treefd32fee09fb678151900bc3cfa7ad280b887fcb7 /gold
parent3b462ec2bedca7392bf4720db44fdf2a46ad8b4d (diff)
downloadbinutils-gdb-775ed62ec53a38c656300d4ce50ae5a56c0d38a2.tar.gz
Fix Sniff_file to get an aligned view.
gold/ * nacl.h (Sniff_file): Switch parameters to get_view to get an aligned view.
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog5
-rw-r--r--gold/nacl.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index 92be9727fe0..d66f2927a96 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-02 Cary Coutant <ccoutant@gmail.com>
+
+ * nacl.h (Sniff_file): Switch parameters to get_view to get an
+ aligned view.
+
2015-06-03 Cary Coutant <ccoutant@gmail.com>
PR gold/17819
diff --git a/gold/nacl.h b/gold/nacl.h
index 5b6f5a4cfaa..950a0c6d7cf 100644
--- a/gold/nacl.h
+++ b/gold/nacl.h
@@ -60,7 +60,7 @@ class Sniff_file
{
public:
View(File_read& file, off_t file_offset, off_t data_size)
- : data_(file.get_view(0, file_offset, data_size, true, false))
+ : data_(file.get_view(file_offset, 0, data_size, true, false))
{ }
const unsigned char* data()