From f2619d6c3b8c13c9511484252a89b2776c081d1e Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 6 Dec 2007 06:03:00 +0000 Subject: Initialize variable to avoid warning. --- gold/object.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gold/object.cc') diff --git a/gold/object.cc b/gold/object.cc index ab1323a..3bf274a 100644 --- a/gold/object.cc +++ b/gold/object.cc @@ -1026,7 +1026,7 @@ Sized_relobj::write_local_symbols(Output_file* of, // Get views into the output file for the portions of the symbol table // and the dynamic symbol table that we will be writing. off_t output_size = this->output_local_symbol_count_ * sym_size; - unsigned char* oview; + unsigned char* oview = NULL; if (output_size > 0) oview = of->get_output_view(this->local_symbol_offset_, output_size); -- cgit v1.1