forked from OSchip/llvm-project
MC/COFF: Correctly emit the size of an empty string table.
llvm-svn: 144111
This commit is contained in:
parent
6ea1d665a7
commit
5ca95bc56f
|
@ -281,6 +281,7 @@ StringTable::StringTable() {
|
|||
// The string table data begins with the length of the entire string table
|
||||
// including the length header. Allocate space for this header.
|
||||
Data.resize(4);
|
||||
update_length();
|
||||
}
|
||||
|
||||
size_t StringTable::size() const {
|
||||
|
|
Loading…
Reference in New Issue