1
1

ompio: correctly fix a memory plug

as newly reported by Coverity with CID 1372660
Этот коммит содержится в:
Gilles Gouaillardet 2016-09-08 16:16:11 +09:00
родитель 84e178ce94
Коммит d1e1ec51b6

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

@ -881,12 +881,13 @@ int mca_io_ompio_merge_groups(mca_io_ompio_file_t *fh,
{
int i = 0;
int *sizes_old_group;
int ret = OMPI_SUCCESS;
int *displs;
int ret;
int *displs = NULL;
sizes_old_group = (int*)malloc(num_merge_aggrs * sizeof(int));
if (NULL == sizes_old_group) {
opal_output (1, "OUT OF MEMORY\n");
ret = OMPI_ERR_OUT_OF_RESOURCE;
goto exit;
}