printing: Properly initialize auth_info in gtkprintbackend.c
auth_info should be a NULL-terminated array as it is used in e.g. g_strdupv invocations iterating over its elements until a NULL element is encountered. https://bugzilla.gnome.org/show_bug.cgi?id=737777
This commit is contained in:
committed by
Matthias Clasen
parent
597aa8b74d
commit
231cac4f78
@@ -756,7 +756,7 @@ request_password (GtkPrintBackend *backend,
|
|||||||
|
|
||||||
priv->auth_info_required = g_strdupv (ai_required);
|
priv->auth_info_required = g_strdupv (ai_required);
|
||||||
length = g_strv_length (ai_required);
|
length = g_strv_length (ai_required);
|
||||||
priv->auth_info = g_new0 (gchar *, length);
|
priv->auth_info = g_new0 (gchar *, length + 1);
|
||||||
priv->store_auth_info = FALSE;
|
priv->store_auth_info = FALSE;
|
||||||
|
|
||||||
dialog = gtk_dialog_new_with_buttons ( _("Authentication"), NULL, GTK_DIALOG_MODAL,
|
dialog = gtk_dialog_new_with_buttons ( _("Authentication"), NULL, GTK_DIALOG_MODAL,
|
||||||
|
|||||||
Reference in New Issue
Block a user