From 6cab8b63ebbf27525b53cf75ff18d5811fa2d39a Mon Sep 17 00:00:00 2001 From: Scott Balneaves Date: Thu, 22 Nov 2012 21:30:10 -0600 Subject: Fix deprecations and warnings --- src/dlg-ask-password.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/dlg-ask-password.c') diff --git a/src/dlg-ask-password.c b/src/dlg-ask-password.c index 6010bad..c655ba1 100644 --- a/src/dlg-ask-password.c +++ b/src/dlg-ask-password.c @@ -94,7 +94,7 @@ dlg_ask_password__common (FrWindow *window, DialogData *data; GtkWidget *label; char *text; - char *name; + char *name = NULL; data = g_new0 (DialogData, 1); @@ -120,6 +120,7 @@ dlg_ask_password__common (FrWindow *window, name = g_uri_display_basename (fr_window_get_archive_uri (window)); else if (data->pwd_type == FR_PASSWORD_TYPE_PASTE_FROM) name = g_uri_display_basename (fr_window_get_paste_archive_uri (window)); + g_assert (name != NULL); text = g_strdup_printf (_("Enter the password for the archive '%s'."), name); gtk_label_set_label (GTK_LABEL (label), text); g_free (text); -- cgit v1.2.1