forked from OSchip/llvm-project
Don't try to dereference syms[0] on an empty vector. Reported by Todd Jackson
and Jeffrey Bosboom! llvm-svn: 136066
This commit is contained in:
parent
ee61946783
commit
1fcd0f1581
|
@ -360,6 +360,8 @@ static ld_plugin_status all_symbols_read_hook(void) {
|
|||
bool anySymbolsPreserved = false;
|
||||
for (std::list<claimed_file>::iterator I = Modules.begin(),
|
||||
E = Modules.end(); I != E; ++I) {
|
||||
if (I->syms.empty())
|
||||
continue;
|
||||
(*get_symbols)(I->handle, I->syms.size(), &I->syms[0]);
|
||||
for (unsigned i = 0, e = I->syms.size(); i != e; i++) {
|
||||
if (I->syms[i].resolution == LDPR_PREVAILING_DEF) {
|
||||
|
|
Loading…
Reference in New Issue