am ce00354f: Merge "Do not add arcs to the soinfo graph on dlopen"

* commit 'ce00354fec9dfad87090aad4ec79c418e42e92f4':
  Do not add arcs to the soinfo graph on dlopen
This commit is contained in:
Dmitriy Ivanov 2014-05-23 02:22:42 +00:00 committed by Android Git Automerger
commit d97458eb87

View File

@ -840,9 +840,6 @@ soinfo* do_dlopen(const char* name, int flags, soinfo* caller, const android_dle
soinfo* si = find_library(name, flags, extinfo);
if (si != NULL) {
si->CallConstructors();
if (caller != NULL) {
caller->add_child(si);
}
}
protect_data(PROT_READ);
return si;