grpcomm/base: plug misc memory leaks
- add a destructor to orte_grpcomm_caddy_t in order to plug a memory leak - plug a memory leak in barrier_release() Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp>
Этот коммит содержится в:
родитель
c4a47ae9a9
Коммит
f2d6584189
@ -13,6 +13,8 @@
|
|||||||
* Copyright (c) 2011-2016 Los Alamos National Security, LLC. All rights
|
* Copyright (c) 2011-2016 Los Alamos National Security, LLC. All rights
|
||||||
* reserved.
|
* reserved.
|
||||||
* Copyright (c) 2016 Intel, Inc. All rights reserved.
|
* Copyright (c) 2016 Intel, Inc. All rights reserved.
|
||||||
|
* Copyright (c) 2017 Research Organization for Information Science
|
||||||
|
* and Technology (RIST). All rights reserved.
|
||||||
* $COPYRIGHT$
|
* $COPYRIGHT$
|
||||||
*
|
*
|
||||||
* Additional copyrights may follow
|
* Additional copyrights may follow
|
||||||
@ -69,9 +71,15 @@ static void gccon(orte_grpcomm_caddy_t *p)
|
|||||||
p->cbfunc = NULL;
|
p->cbfunc = NULL;
|
||||||
p->cbdata = NULL;
|
p->cbdata = NULL;
|
||||||
}
|
}
|
||||||
|
static void gcdes(orte_grpcomm_caddy_t *p)
|
||||||
|
{
|
||||||
|
if (NULL != p->buf) {
|
||||||
|
OBJ_RELEASE(p->buf);
|
||||||
|
}
|
||||||
|
}
|
||||||
static OBJ_CLASS_INSTANCE(orte_grpcomm_caddy_t,
|
static OBJ_CLASS_INSTANCE(orte_grpcomm_caddy_t,
|
||||||
opal_object_t,
|
opal_object_t,
|
||||||
gccon, NULL);
|
gccon, gcdes);
|
||||||
|
|
||||||
int orte_grpcomm_API_xcast(orte_grpcomm_signature_t *sig,
|
int orte_grpcomm_API_xcast(orte_grpcomm_signature_t *sig,
|
||||||
orte_rml_tag_t tag,
|
orte_rml_tag_t tag,
|
||||||
@ -165,6 +173,7 @@ static void allgather_stub(int fd, short args, void *cbdata)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
coll = orte_grpcomm_base_get_tracker(cd->sig, true);
|
coll = orte_grpcomm_base_get_tracker(cd->sig, true);
|
||||||
|
OBJ_RELEASE(cd->sig);
|
||||||
coll->cbfunc = cd->cbfunc;
|
coll->cbfunc = cd->cbfunc;
|
||||||
coll->cbdata = cd->cbdata;
|
coll->cbdata = cd->cbdata;
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user