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

* commit '571c163950479bd41928098415b2cae7602d4743':
  Do not add arcs to the soinfo graph on dlopen
This commit is contained in:
Dmitriy Ivanov 2014-05-23 19:34:47 +00:00 committed by Android Git Automerger
commit 3e72f2894e

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); soinfo* si = find_library(name, flags, extinfo);
if (si != NULL) { if (si != NULL) {
si->CallConstructors(); si->CallConstructors();
if (caller != NULL) {
caller->add_child(si);
}
} }
protect_data(PROT_READ); protect_data(PROT_READ);
return si; return si;