1
1

Merge pull request #1706 from vspetrov/coll_hcoll_req_type_bugfix

coll/hcoll: bugfix: initialize req_type field
Этот коммит содержится в:
Joshua Ladd 2016-05-25 10:56:33 -04:00
родитель 2b868c4952 5ff6372886
Коммит ce783a9ebf

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

@ -408,6 +408,7 @@ static void* get_coll_handle(void)
ompi_req->req_status.MPI_ERROR = MPI_SUCCESS;
ompi_req->req_state = OMPI_REQUEST_ACTIVE;
ompi_req->req_free = request_free;
ompi_req->req_type = OMPI_REQUEST_COLL;
return (void *)ompi_req;
}