1
1

libfabric psm: fix (void*) dereference

Committed upstream to libfabric as well.
Этот коммит содержится в:
Jeff Squyres 2014-12-11 20:12:13 -08:00
родитель 0f28233b35
Коммит e4b3c6f1c4

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

@ -204,7 +204,7 @@ void *psmx_resolve_name(const char *servername, int port)
return NULL;
}
dest_addr = calloc(1,sizeof(*dest_addr));
dest_addr = calloc(1,sizeof(psm_epid_t));
if (!dest_addr) {
close(sockfd);
return NULL;