From e945347f5242c496d9003a6af45adf716b707eaf Mon Sep 17 00:00:00 2001 From: Will Song Date: Tue, 24 Nov 2015 18:19:02 -0600 Subject: free fname as soon as we are done with it (also prevents a memory leak) --- src/command/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/commands.c b/src/command/commands.c index 286b0afe..25ba0d1e 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -841,6 +841,7 @@ cmd_export(ProfWin *window, const char *const command, gchar **args) } fd = open(fname->str, O_WRONLY | O_CREAT, 00600); + g_string_free(fname, TRUE); if(-1 == fd) { cons_show("error: cannot open %s: %s", args[0], strerror(errno)); @@ -877,7 +878,6 @@ cmd_export(ProfWin *window, const char *const command, gchar **args) g_slist_free(list); close(fd); - g_string_free(fname, TRUE); return TRUE; write_error: cons_show("error: write failed: %s", strerror(errno)); -- cgit 1.4.1-2-gfad0