Merge "VersionTracker: Ignore libraries without soname"

This commit is contained in:
Dmitriy Ivanov 2015-05-06 19:06:19 +00:00 committed by Gerrit Code Review
commit c95a9e9dad

View File

@ -1686,7 +1686,7 @@ bool VersionTracker::init_verneed(const soinfo* si_from) {
const char* target_soname = si_from->get_string(verneed->vn_file);
// find it in dependencies
soinfo* target_si = si_from->get_children().find_if([&](const soinfo* si) {
return strcmp(si->get_soname(), target_soname) == 0;
return si->get_soname() != nullptr && strcmp(si->get_soname(), target_soname) == 0;
});
if (target_si == nullptr) {