Merge "Add some missing dlclose(.)"

This commit is contained in:
Dmitriy Ivanov 2014-09-03 00:36:22 +00:00 committed by Gerrit Code Review
commit 3b10ba6f1b
1 changed files with 2 additions and 0 deletions

View File

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