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

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

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;