diff options
author | Ian Lance Taylor <ian@airs.com> | 2008-06-18 04:15:52 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2008-06-18 04:15:52 +0000 |
commit | c42e122ead58317580cb49a2e0db60fd8e308edd (patch) | |
tree | 965810af251995e2db8269a697e7f76a70810c8a /gold/script-sections.cc | |
parent | c8536f380f3ec851bd3a06ff92e0f490c1ac9864 (diff) | |
download | binutils-gdb-c42e122ead58317580cb49a2e0db60fd8e308edd.tar.gz |
* script-sections.cc (Script_sections::place_orphan): Initialize
local variable exact.
Diffstat (limited to 'gold/script-sections.cc')
-rw-r--r-- | gold/script-sections.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/script-sections.cc b/gold/script-sections.cc index 7f3a4daa9cd..4891ac7d93c 100644 --- a/gold/script-sections.cc +++ b/gold/script-sections.cc @@ -2423,7 +2423,7 @@ Script_sections::place_orphan(Output_section* os) p != this->sections_elements_->end(); ++p) { - bool exact; + bool exact = false; if ((*p)->place_orphan_here(os, &exact)) { place = p; |