1
1

Removed a variable which was allocated but never used.

This commit was SVN r26055.
Этот коммит содержится в:
Vishwanath Venkatesan 2012-02-24 20:48:52 +00:00
родитель 326bc69df4
Коммит d5a9223a9a

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

@ -82,7 +82,7 @@ mca_fcoll_dynamic_file_write_all (mca_io_ompio_file_t *fh,
int current_index = 0, temp_index=0;
char *global_buf = NULL;
MPI_Aint global_count = 0, *memlocs=NULL;
MPI_Aint global_count = 0;
/* array that contains the sorted indices of the global_iov */
@ -354,13 +354,6 @@ mca_fcoll_dynamic_file_write_all (mca_io_ompio_file_t *fh,
goto exit;
}
memlocs = (MPI_Aint *) malloc (fh->f_procs_per_group * sizeof(MPI_Aint));
if (NULL == memlocs) {
opal_output (1, "OUT OF MEMORY\n");
ret = OMPI_ERR_OUT_OF_RESOURCE;
goto exit;
}
for(i=0;i<fh->f_procs_per_group;i++){
blocklen_per_process[i] = NULL;
displs_per_process[i] = NULL;