From 6ad3dabab5613c44aa20aa8698710351ea554721 Mon Sep 17 00:00:00 2001 From: Cary Coutant Date: Wed, 1 May 2013 17:37:14 +0000 Subject: gold/ * stringpool.cc (Stringpool_template::new_key_offset): Fix uninitialized warning. --- gold/stringpool.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gold/stringpool.cc') diff --git a/gold/stringpool.cc b/gold/stringpool.cc index 072b00d..665fcc8 100644 --- a/gold/stringpool.cc +++ b/gold/stringpool.cc @@ -222,9 +222,10 @@ Stringpool_template::new_key_offset(size_t length) offset = 0; else { + offset = this->offset_; // Align non-zero length strings. if (length != 0) - offset = align_address(this->offset_, this->addralign_); + offset = align_address(offset, this->addralign_); this->offset_ = offset + (length + 1) * sizeof(Stringpool_char); } this->key_to_offset_.push_back(offset); -- cgit v1.1