In the file ompi/mpi/c/info_set.c, lines 87-92, from the current
release version of the code (v1.1),
value_length = (value) ? strlen (value) : 0;
if ((NULL == value) || (0 == value_length) ||
(MPI_MAX_INFO_KEY <= value_length)) {
return OMPI_ERRHANDLER_INVOKE (
You're exactly right -- thanks for the report!
On 8/1/06 8:49 AM, "Chris Hennes" wrote:
> In the file ompi/mpi/c/info_set.c, lines 87-92, from the current
> release version of the code (v1.1),
>
> value_length = (value) ? strlen (value) : 0;
> if ((NULL == value) || (0 == value