PR gold/12689

* archive.h (Incremental_archive_entry::Archive_member):
	Initialize arg_serial_ (second constructor).
This commit is contained in:
Cary Coutant 2011-04-20 18:20:51 +00:00
parent 904760745d
commit e7782cf63b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-04-20 Cary Coutant <ccoutant@google.com>
PR gold/12689
* archive.h (Incremental_archive_entry::Archive_member):
Initialize arg_serial_ (second constructor).
2011-04-17 Ian Lance Taylor <iant@google.com>
* object.cc (Relocate_info::location): Simplify location string.

View File

@ -51,7 +51,7 @@ struct Archive_member
: obj_(NULL), sd_(NULL), arg_serial_(0)
{ }
Archive_member(Object* obj, Read_symbols_data* sd)
: obj_(obj), sd_(sd)
: obj_(obj), sd_(sd), arg_serial_(0)
{ }
// The object file.
Object* obj_;