[geany/geany] bc6c34: Remove an unused variable that could be leaked

Colomban Wendling git-noreply at xxxxx
Sun Nov 3 21:18:26 UTC 2013


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Sun, 03 Nov 2013 21:18:26 UTC
Commit:      bc6c345153f2020fb64827e5a8442e4ecc2794e9
             https://github.com/geany/geany/commit/bc6c345153f2020fb64827e5a8442e4ecc2794e9

Log Message:
-----------
Remove an unused variable that could be leaked


Modified Paths:
--------------
    src/build.c

Modified: src/build.c
7 files changed, 2 insertions(+), 5 deletions(-)
===================================================================
@@ -868,7 +868,6 @@ static GPid build_spawn_cmd(GeanyDocument *doc, const gchar *cmd, const gchar *d
  * when vc->skip_run_script is set, otherwise it will be set to NULL */
 static gchar *prepare_run_script(GeanyDocument *doc, gchar **vte_cmd_nonscript, guint cmdindex)
 {
-	gchar *locale_filename = NULL;
 	GeanyBuildCommand *cmd = NULL;
 	gchar *executable = NULL;
 	gchar *working_dir = NULL;
@@ -882,8 +881,6 @@ static gchar *prepare_run_script(GeanyDocument *doc, gchar **vte_cmd_nonscript,
 	if (vte_cmd_nonscript != NULL)
 		*vte_cmd_nonscript = NULL;
 
-	locale_filename = utils_get_locale_from_utf8(doc->file_name);
-
 	cmd = get_build_cmd(doc, GEANY_GBG_EXEC, cmdindex, NULL);
 
 	cmd_string = build_replace_placeholder(doc, cmd->command);
@@ -912,7 +909,7 @@ static gchar *prepare_run_script(GeanyDocument *doc, gchar **vte_cmd_nonscript,
 			if (vte_cmd_nonscript != NULL)
 				*vte_cmd_nonscript = cmd_string;
 
-			utils_free_pointers(2, executable, locale_filename, NULL);
+			utils_free_pointers(1, executable, NULL);
 			return working_dir;
 		}
 		else
@@ -932,7 +929,7 @@ static gchar *prepare_run_script(GeanyDocument *doc, gchar **vte_cmd_nonscript,
 		g_error_free(error);
 	}
 
-	utils_free_pointers(4, cmd_string, tmp, executable, locale_filename, NULL);
+	utils_free_pointers(3, cmd_string, tmp, executable, NULL);
 
 	if (result)
 		return working_dir;



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list