Add some missing dlclose(.)

Bug: 17358010
Change-Id: I9e427b7681f1a8fe890b0b47812d9e65ab95c792
This commit is contained in:
Dmitriy Ivanov 2014-09-02 17:31:44 -07:00
parent ec95a9cf11
commit 319356e39c

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);
} }