am 69fde6b4: am 3b10ba6f: Merge "Add some missing dlclose(.)"

* commit '69fde6b4a7c7674c8bbc8fba0b82bcc25fdf0539':
  Add some missing dlclose(.)
This commit is contained in:
Dmitriy Ivanov 2014-09-03 05:04:25 +00:00 committed by Android Git Automerger
commit 763d17e22f

View File

@ -338,4 +338,6 @@ TEST(dlfcn, dlopen_symlink) {
ASSERT_TRUE(handle1 != NULL); ASSERT_TRUE(handle1 != NULL);
ASSERT_TRUE(handle2 != NULL); ASSERT_TRUE(handle2 != NULL);
ASSERT_EQ(handle1, handle2); ASSERT_EQ(handle1, handle2);
dlclose(handle1);
dlclose(handle2);
} }