From 6bbdf75df0bf34f6c3db89ab17fcf0cf5b9dacb6 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 20 Apr 2005 13:16:32 +0000 Subject: [PATCH] Plug a few memory leaks in order to test new libtool improvements from Ralf W (core libtool developer). There are still a few more to plug in ompi_info (mainly concerned with shutting down OMPI/ORTE subsystems), but they can wait... This commit was SVN r5466. --- src/tools/ompi_info/ompi_info.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tools/ompi_info/ompi_info.cc b/src/tools/ompi_info/ompi_info.cc index a453527c87..1d5344927f 100644 --- a/src/tools/ompi_info/ompi_info.cc +++ b/src/tools/ompi_info/ompi_info.cc @@ -34,6 +34,7 @@ #endif #include +#include "class/ompi_object.h" #include "runtime/runtime.h" #include "util/output.h" #include "util/cmd_line.h" @@ -209,5 +210,7 @@ int main(int argc, char *argv[]) ompi_info::close_components(); OBJ_RELEASE(cmd_line); + mca_base_close(); + ompi_class_finalize(); return 0; }