aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Ivanov <dimitry@google.com>2017-04-19 11:28:16 -0700
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-05-25 17:47:04 +0000
commit0d23f83aeba7105a71cdb1241e361df6572efe7b (patch)
treeae33e49fbcdddb79e9ad8b950d5874eef1cc77de
parente04608196aae9d4afbc08294d01a419cca312e6a (diff)
downloadbionic-0d23f83aeba7105a71cdb1241e361df6572efe7b.tar.gz
linker: remove link from external library on unload
When unloading library make sure the soinfo_link to parent from linked external libraries is removed as well. Bug: 36104177 Bug: http://b/37433850 Test: manual Change-Id: I601b54144acecac54744805b38313c46045c54cb (cherry picked from commit ee398f820700de30941fd82e38bd917e1513cbc6) (cherry picked from commit b37d10cc8017c102530c096537890b7c6215ad2b)
-rw-r--r--linker/linker.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linker/linker.cpp b/linker/linker.cpp
index 9dc928eb4..a043b859a 100644
--- a/linker/linker.cpp
+++ b/linker/linker.cpp
@@ -2246,6 +2246,9 @@ static void soinfo_unload(soinfo* soinfos[], size_t count) {
if (local_unload_list.contains(child)) {
continue;
} else if (child->is_linked() && child->get_local_group_root() != root) {
+ child->get_parents().remove_if([&] (const soinfo* parent) {
+ return parent == si;
+ });
external_unload_list.push_back(child);
} else {
unload_list.push_front(child);