From 25476c7e54f8d1607f7a2e938487d9f6f90eafa2 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Tue, 29 Nov 2011 23:50:18 +0000 Subject: [PATCH] buffer is not yet initialized, so there is no reason to release it. This commit was SVN r25549. --- orte/orted/orted_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/orte/orted/orted_main.c b/orte/orted/orted_main.c index 0dae71443b..74966e6952 100644 --- a/orte/orted/orted_main.c +++ b/orte/orted/orted_main.c @@ -561,14 +561,12 @@ int orte_daemon(int argc, char *argv[]) if (ORTE_SUCCESS != (ret = orte_rml.set_contact_info(rml_uri))) { ORTE_ERROR_LOG(ret); free(rml_uri); - OBJ_RELEASE(buffer); goto DONE; } ret = orte_rml_base_parse_uris(rml_uri, &parent, NULL ); if( ORTE_SUCCESS != ret ) { ORTE_ERROR_LOG(ret); free(rml_uri); - OBJ_RELEASE(buffer); goto DONE; } free(rml_uri);