From: Daniel Thibault Date: Tue, 24 Jan 2012 22:32:47 +0000 (-0500) Subject: Fix file descriptor leak and typo in conf.c X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=00f368638a00aa0a823d5ed8b077af74339b687b Fix file descriptor leak and typo in conf.c Signed-off-by: David Goulet --- diff --git a/src/bin/lttng/conf.c b/src/bin/lttng/conf.c index d326378f7..cdd264a5d 100644 --- a/src/bin/lttng/conf.c +++ b/src/bin/lttng/conf.c @@ -171,7 +171,7 @@ char *config_read_session_name(char *path) fp = open_config(path, "r"); if (fp == NULL) { ERR("Can't find valid lttng config %s/.lttngrc", path); - MSG("Did you create a session? (lttng create )"); + MSG("Did you create a session? (lttng create )"); goto error; } @@ -180,7 +180,7 @@ char *config_read_session_name(char *path) if ((ret = fscanf(fp, "%[^'=']=%s\n", var, session_name)) != 2) { if (ret == -1) { ERR("Missing session=NAME in config file."); - goto error; + goto error_close; } continue; } @@ -190,6 +190,7 @@ char *config_read_session_name(char *path) } } +error_close: fclose(fp); error: