Open
Description
@hjelmn I see 2 odd memory leaks in opal/runtime/opal_mca.c:
- Line 114:
ret = mca_base_var_register ("opal", "opal", NULL, "signal", ...);
- Line 179:
ret = mca_base_var_register ("opal", "opal", "net", "private_ipv4",
Neither of these strings are freed at the end of time. I'm guessing the MCA var base is not freeing the "opal" group...? (I see that there's also some "ompi"/"mpi" params registered in this file)
Is there a leak in the MCA var base that doesn't clean up non-framework groups?