1
1

Fix CID 967922: minor memory leak possibility.

This commit was SVN r28175.
Этот коммит содержится в:
Jeff Squyres 2013-03-15 17:59:00 +00:00
родитель 447280b585
Коммит f8bbfacf65

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

@ -385,7 +385,11 @@ static int query(pid_t pid,
/* parse to extract the fields */
fields = NULL;
local_getfields(dptr, &fields);
if (NULL == fields || 14 < opal_argv_count(fields)) {
if (NULL == fields) {
continue;
}
if (14 < opal_argv_count(fields)) {
opal_argv_free(fields);
continue;
}
/* pack the ones of interest into the struct */