From: Dirk Hohndel Date: Sun, 26 Aug 2012 22:35:48 +0000 (-0700) Subject: Might as well free current_file X-Git-Url: http://git.tdb.fi/?p=ext%2Fsubsurface.git;a=commitdiff_plain;h=b693bb3fb962c54767f8430058575441df243b13 Might as well free current_file In commit fd2debc1e730 ("replaced stdndup() with the inlined equivalent") Lubomir freed the memory from one of my two strdups but not the other. Signed-off-by: Dirk Hohndel --- diff --git a/gtk-gui.c b/gtk-gui.c index bebc4f9..895ef44 100644 --- a/gtk-gui.c +++ b/gtk-gui.c @@ -222,6 +222,7 @@ static void file_save_as(GtkWidget *w, gpointer data) gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), current_file); free(current_dir); + free(current_file); if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) { filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));