aboutsummaryrefslogtreecommitdiff
path: root/gold/fileread.cc
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2010-10-12 15:30:24 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2010-10-12 15:30:24 +0000
commit7411e9a828d5384857b444cc701cdab6e5f4d676 (patch)
treed396a1df0983668f96441ee3deb5e7b6316d468a /gold/fileread.cc
parent6877026586788b57988ba67c79c9ec94af30f591 (diff)
downloadfsf-binutils-gdb-7411e9a828d5384857b444cc701cdab6e5f4d676.zip
fsf-binutils-gdb-7411e9a828d5384857b444cc701cdab6e5f4d676.tar.gz
fsf-binutils-gdb-7411e9a828d5384857b444cc701cdab6e5f4d676.tar.bz2
gold/
* fileread.cc (Input_file::find_file): Initialize *found_name and *namep when using the fallback search for case 4.
Diffstat (limited to 'gold/fileread.cc')
-rw-r--r--gold/fileread.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/fileread.cc b/gold/fileread.cc
index f626028..a16738a 100644
--- a/gold/fileread.cc
+++ b/gold/fileread.cc
@@ -963,6 +963,8 @@ Input_file::find_file(const Dirsearch& dirpath, int* pindex,
input_argument->name());
return false;
}
+ *found_name = input_argument->name();
+ *namep = name;
*pindex = index + 1;
return true;
}