1
1
This commit was SVN r27736.
Этот коммит содержится в:
Ralph Castain 2013-01-03 02:04:54 +00:00
родитель a1754dfe31
Коммит ec2f6abb69

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

@ -82,7 +82,10 @@ ompi_modex_recv(const mca_base_component_t *component,
*buffer = (void*)boptr->bytes;
*size = boptr->size;
}
/* we no longer require the struct itself since all we
* wanted was the data inside it
*/
free(boptr);
free(key);
return rc;
}
@ -146,7 +149,10 @@ ompi_modex_recv_string(const char* key,
*buffer = boptr->bytes;
*size = boptr->size;
}
/* we no longer require the struct itself since all we
* wanted was the data inside it
*/
free(boptr);
return rc;
}