1
1

dl dlopen: free resources upon error

Ensure to take the right path out upon errors (that will free any
pending resources).

This was Coverity CID 1288086
Этот коммит содержится в:
Jeff Squyres 2015-03-10 06:44:00 -07:00
родитель 49b5eb6c91
Коммит 546ad3f060

Просмотреть файл

@ -166,7 +166,8 @@ static int dlopen_foreachfile(const char *search_path,
dp = opendir(dirs[i]);
if (NULL == dp) {
return OPAL_ERR_IN_ERRNO;
ret = OPAL_ERR_IN_ERRNO;
goto error;
}
struct dirent *de;