]> saetta.ns0.it Git - zakconfi/gui/commitdiff
Error if key description is null on key editing.
authorAndrea Zagli <azagli@libero.it>
Sat, 8 Oct 2016 10:04:32 +0000 (12:04 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 8 Oct 2016 10:04:32 +0000 (12:04 +0200)
src/main.c

index ed2164b66dea68932a6d3b47f50c97927c543294..9761864407b25b7571b39dcd66d621215cc294e9 100644 (file)
@@ -635,7 +635,14 @@ on_mnuKeysEdit_activate (GtkMenuItem *menuitem,
                                        gtk_entry_set_text (GTK_ENTRY (txtParent), ck->path);
                                        gtk_entry_set_text (GTK_ENTRY (txtName), ck->key);
                                        gtk_entry_set_text (GTK_ENTRY (txtValue), ck->value);
-                                       gtk_text_buffer_set_text (buffer, ck->description, strlen (ck->description));
+                                       if (ck != NULL)
+                                               {
+                                                       gtk_text_buffer_set_text (buffer, ck->description, -1);
+                                               }
+                                       else
+                                               {
+                                                       gtk_text_buffer_set_text (buffer, "", -1);
+                                               }
 
                                        if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
                                                {