1
1

We have to free the pointer not the content of the pointer (confirmed

with the standard).

This commit was SVN r5327.
Этот коммит содержится в:
George Bosilca 2005-04-14 04:01:23 +00:00
родитель 2be1a1a2f3
Коммит 551b5b6a05

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

@ -45,8 +45,7 @@ int MPI_Free_mem(void *baseptr)
}
/* For this release, we're just calling malloc(). */
free(*((void **) baseptr));
free( baseptr );
/* All done */