Blame SOURCES/evolution-3.28.5-crash-empty-attendee.patch

214acd
diff -up evolution-3.28.5/src/calendar/gui/e-comp-editor.c.crash-empty-attendee evolution-3.28.5/src/calendar/gui/e-comp-editor.c
214acd
--- evolution-3.28.5/src/calendar/gui/e-comp-editor.c.crash-empty-attendee	2018-07-30 15:37:05.000000000 +0200
873ad5
+++ evolution-3.28.5/src/calendar/gui/e-comp-editor.c	2020-05-15 12:24:47.067773299 +0200
873ad5
@@ -112,10 +112,10 @@ ece_restore_focus (ECompEditor *comp_edi
873ad5
 	g_return_if_fail (E_IS_COMP_EDITOR (comp_editor));
873ad5
 
873ad5
 	if (comp_editor->priv->restore_focus) {
873ad5
-		gtk_widget_grab_focus (comp_editor->priv->restore_focus);
873ad5
-
873ad5
 		if (GTK_IS_ENTRY (comp_editor->priv->restore_focus))
873ad5
-			gtk_editable_set_position (GTK_EDITABLE (comp_editor->priv->restore_focus), 0);
873ad5
+			gtk_entry_grab_focus_without_selecting (GTK_ENTRY (comp_editor->priv->restore_focus));
873ad5
+		else
873ad5
+			gtk_widget_grab_focus (comp_editor->priv->restore_focus);
873ad5
 
873ad5
 		comp_editor->priv->restore_focus = NULL;
873ad5
 	}
214acd
@@ -2610,6 +2610,7 @@ e_comp_editor_fill_component (ECompEdito
214acd
 			      icalcomponent *component)
214acd
 {
214acd
 	ECompEditorClass *comp_editor_class;
214acd
+	GtkWidget *focused_widget;
214acd
 	gboolean is_valid;
214acd
 
214acd
 	g_return_val_if_fail (E_IS_COMP_EDITOR (comp_editor), FALSE);
873ad5
@@ -2619,8 +2620,34 @@ e_comp_editor_fill_component (ECompEdito
214acd
 	g_return_val_if_fail (comp_editor_class != NULL, FALSE);
214acd
 	g_return_val_if_fail (comp_editor_class->fill_component != NULL, FALSE);
214acd
 
214acd
+	focused_widget = gtk_window_get_focus (GTK_WINDOW (comp_editor));
214acd
+	if (focused_widget) {
214acd
+		GtkWidget *parent, *ce_widget = GTK_WIDGET (comp_editor);
214acd
+
214acd
+		/* When a cell-renderer is focused and editing the cell content,
214acd
+		   then unfocus it may mean to free the currently focused widget,
214acd
+		   thus get the GtkTreeView in such cases. */
214acd
+		parent = focused_widget;
214acd
+		while (parent = gtk_widget_get_parent (parent), parent && parent != ce_widget) {
214acd
+			if (GTK_IS_TREE_VIEW (parent)) {
214acd
+				focused_widget = parent;
214acd
+				break;
214acd
+			}
214acd
+		}
214acd
+
214acd
+		/* Save any pending changes */
214acd
+		gtk_window_set_focus (GTK_WINDOW (comp_editor), NULL);
214acd
+	}
214acd
+
214acd
 	is_valid = comp_editor_class->fill_component (comp_editor, component);
214acd
 
873ad5
+	if (focused_widget) {
873ad5
+		if (GTK_IS_ENTRY (focused_widget))
873ad5
+			gtk_entry_grab_focus_without_selecting (GTK_ENTRY (focused_widget));
873ad5
+		else
873ad5
+			gtk_widget_grab_focus (focused_widget);
873ad5
+	}
214acd
+
214acd
 	if (is_valid && comp_editor->priv->validation_alert) {
214acd
 		e_alert_response (comp_editor->priv->validation_alert, GTK_RESPONSE_CLOSE);
214acd
 		g_clear_object (&comp_editor->priv->validation_alert);
873ad5
diff -up evolution-3.28.5/src/calendar/gui/e-comp-editor-event.c.crash-empty-attendee evolution-3.28.5/src/calendar/gui/e-comp-editor-event.c
873ad5
--- evolution-3.28.5/src/calendar/gui/e-comp-editor-event.c.crash-empty-attendee	2020-05-15 12:23:49.488776711 +0200
873ad5
+++ evolution-3.28.5/src/calendar/gui/e-comp-editor-event.c	2020-05-15 12:24:47.064773299 +0200
873ad5
@@ -67,14 +67,14 @@ ece_event_update_times (ECompEditorEvent
873ad5
 			EDateEdit *date_edit,
873ad5
 			gboolean change_end_datetime)
873ad5
 {
873ad5
-	GtkWidget *widget;
873ad5
 	guint flags;
873ad5
 
873ad5
 	g_return_if_fail (E_IS_COMP_EDITOR_EVENT (event_editor));
873ad5
 	g_return_if_fail (E_IS_DATE_EDIT (date_edit));
873ad5
 
873ad5
-	widget = e_date_edit_get_entry (date_edit);
873ad5
-	if (widget && gtk_widget_has_focus (widget))
873ad5
+	if (e_date_edit_has_focus (date_edit) ||
873ad5
+	    !e_date_edit_date_is_valid (date_edit) ||
873ad5
+	    !e_date_edit_time_is_valid (date_edit))
873ad5
 		return;
873ad5
 
873ad5
 	if (!e_comp_editor_get_updating (E_COMP_EDITOR (event_editor))) {
873ad5
diff -up evolution-3.28.5/src/calendar/gui/e-comp-editor-property-part.c.crash-empty-attendee evolution-3.28.5/src/calendar/gui/e-comp-editor-property-part.c
873ad5
--- evolution-3.28.5/src/calendar/gui/e-comp-editor-property-part.c.crash-empty-attendee	2020-05-15 12:24:06.520775702 +0200
873ad5
+++ evolution-3.28.5/src/calendar/gui/e-comp-editor-property-part.c	2020-05-15 12:30:44.589752111 +0200
873ad5
@@ -589,6 +589,23 @@ struct _ECompEditorPropertyPartDatetimeP
873ad5
 G_DEFINE_ABSTRACT_TYPE (ECompEditorPropertyPartDatetime, e_comp_editor_property_part_datetime, E_TYPE_COMP_EDITOR_PROPERTY_PART)
873ad5
 
873ad5
 static void
873ad5
+ecepp_datetime_changed_cb (ECompEditorPropertyPart *property_part)
873ad5
+{
873ad5
+	GtkWidget *edit_widget;
873ad5
+
873ad5
+	g_return_if_fail (E_IS_COMP_EDITOR_PROPERTY_PART_DATETIME (property_part));
873ad5
+
873ad5
+	edit_widget = e_comp_editor_property_part_get_edit_widget (property_part);
873ad5
+
873ad5
+	if (!edit_widget || e_date_edit_has_focus (E_DATE_EDIT (edit_widget)) ||
873ad5
+	    !e_date_edit_date_is_valid (E_DATE_EDIT (edit_widget)) ||
873ad5
+	    !e_date_edit_time_is_valid (E_DATE_EDIT (edit_widget)))
873ad5
+		return;
873ad5
+
873ad5
+	e_comp_editor_property_part_emit_changed (property_part);
873ad5
+}
873ad5
+
873ad5
+static void
873ad5
 ecepp_datetime_create_widgets (ECompEditorPropertyPart *property_part,
873ad5
 			       GtkWidget **out_label_widget,
873ad5
 			       GtkWidget **out_edit_widget)
873ad5
@@ -616,9 +633,9 @@ ecepp_datetime_create_widgets (ECompEdit
873ad5
 	gtk_widget_show (*out_edit_widget);
873ad5
 
873ad5
 	g_signal_connect_swapped (*out_edit_widget, "changed",
873ad5
-		G_CALLBACK (e_comp_editor_property_part_emit_changed), property_part);
873ad5
+		G_CALLBACK (ecepp_datetime_changed_cb), property_part);
873ad5
 	g_signal_connect_swapped (*out_edit_widget, "notify::show-time",
873ad5
-		G_CALLBACK (e_comp_editor_property_part_emit_changed), property_part);
873ad5
+		G_CALLBACK (ecepp_datetime_changed_cb), property_part);
873ad5
 }
873ad5
 
873ad5
 static void
873ad5
diff -up evolution-3.28.5/src/e-util/e-dateedit.c.crash-empty-attendee evolution-3.28.5/src/e-util/e-dateedit.c
873ad5
--- evolution-3.28.5/src/e-util/e-dateedit.c.crash-empty-attendee	2020-05-15 12:22:47.352780394 +0200
873ad5
+++ evolution-3.28.5/src/e-util/e-dateedit.c	2020-05-15 12:24:47.068773299 +0200
873ad5
@@ -527,6 +527,13 @@ e_date_edit_new (void)
873ad5
 }
873ad5
 
873ad5
 static void
873ad5
+on_time_entry_changed_cb (GtkEditable *editable,
873ad5
+			  EDateEdit *dedit)
873ad5
+{
873ad5
+	e_date_edit_check_time_changed (dedit);
873ad5
+}
873ad5
+
873ad5
+static void
873ad5
 create_children (EDateEdit *dedit)
873ad5
 {
873ad5
 	EDateEditPrivate *priv;
873ad5
@@ -636,6 +643,9 @@ create_children (EDateEdit *dedit)
873ad5
 	g_signal_connect_after (
873ad5
 		child, "focus_out_event",
873ad5
 		G_CALLBACK (on_time_entry_focus_out), dedit);
873ad5
+	g_signal_connect (
873ad5
+		child, "changed",
873ad5
+		G_CALLBACK (on_time_entry_changed_cb), dedit);
873ad5
 	g_signal_connect_after (
873ad5
 		priv->time_combo, "changed",
873ad5
 		G_CALLBACK (on_date_edit_time_selected), dedit);
873ad5
@@ -2000,7 +2010,6 @@ on_date_entry_focus_out (GtkEntry *entry
873ad5
                          EDateEdit *dedit)
873ad5
 {
873ad5
 	struct tm tmp_tm;
873ad5
-	GtkWidget *msg_dialog;
873ad5
 
873ad5
 	tmp_tm.tm_year = 0;
873ad5
 	tmp_tm.tm_mon = 0;
873ad5
@@ -2009,21 +2018,9 @@ on_date_entry_focus_out (GtkEntry *entry
873ad5
 	e_date_edit_check_date_changed (dedit);
873ad5
 
873ad5
 	if (!e_date_edit_date_is_valid (dedit)) {
873ad5
-		msg_dialog = gtk_message_dialog_new (
873ad5
-			NULL,
873ad5
-			GTK_DIALOG_MODAL,
873ad5
-			GTK_MESSAGE_WARNING,
873ad5
-			GTK_BUTTONS_OK,
873ad5
-			"%s", _("Invalid Date Value"));
873ad5
-		gtk_dialog_run (GTK_DIALOG (msg_dialog));
873ad5
-		gtk_widget_destroy (msg_dialog);
873ad5
-		e_date_edit_get_date (
873ad5
-			dedit, &tmp_tm.tm_year,
873ad5
-			&tmp_tm.tm_mon, &tmp_tm.tm_mday);
873ad5
-		e_date_edit_set_date (
873ad5
-			dedit, tmp_tm.tm_year,
873ad5
-			tmp_tm.tm_mon, tmp_tm.tm_mday);
873ad5
-		gtk_widget_grab_focus (GTK_WIDGET (entry));
873ad5
+		gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_SECONDARY, "dialog-warning");
873ad5
+		gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY, _("Invalid Date Value"));
873ad5
+		gtk_entry_grab_focus_without_selecting (entry);
873ad5
 		return FALSE;
873ad5
 	} else if (e_date_edit_get_date (
873ad5
 		dedit, &tmp_tm.tm_year, &tmp_tm.tm_mon, &tmp_tm.tm_mday)) {
873ad5
@@ -2041,6 +2038,10 @@ on_date_entry_focus_out (GtkEntry *entry
873ad5
 		dedit->priv->date_set_to_none = TRUE;
873ad5
 		e_date_edit_update_date_entry (dedit);
873ad5
 	}
873ad5
+
873ad5
+	gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
873ad5
+	gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
873ad5
+
873ad5
 	return FALSE;
873ad5
 }
873ad5
 
873ad5
@@ -2049,23 +2050,17 @@ on_time_entry_focus_out (GtkEntry *entry
873ad5
                          GdkEventFocus *event,
873ad5
                          EDateEdit *dedit)
873ad5
 {
873ad5
-	GtkWidget *msg_dialog;
873ad5
-
873ad5
 	e_date_edit_check_time_changed (dedit);
873ad5
 
873ad5
 	if (!e_date_edit_time_is_valid (dedit)) {
873ad5
-		msg_dialog = gtk_message_dialog_new (
873ad5
-			NULL,
873ad5
-			GTK_DIALOG_MODAL,
873ad5
-			GTK_MESSAGE_WARNING,
873ad5
-			GTK_BUTTONS_OK,
873ad5
-			"%s", _("Invalid Time Value"));
873ad5
-		gtk_dialog_run (GTK_DIALOG (msg_dialog));
873ad5
-		gtk_widget_destroy (msg_dialog);
873ad5
-		e_date_edit_set_time (dedit,e_date_edit_get_time (dedit));
873ad5
-		gtk_widget_grab_focus (GTK_WIDGET (entry));
873ad5
-		return FALSE;
873ad5
+		gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_PRIMARY, "dialog-warning");
873ad5
+		gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_PRIMARY, _("Invalid Time Value"));
873ad5
+		gtk_entry_grab_focus_without_selecting (entry);
873ad5
+	} else {
873ad5
+		gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_PRIMARY, NULL);
873ad5
+		gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_PRIMARY, NULL);
873ad5
 	}
873ad5
+
873ad5
 	return FALSE;
873ad5
 }
873ad5
 
873ad5
@@ -2363,7 +2358,7 @@ e_date_edit_check_time_changed (EDateEdi
873ad5
 		tmp_tm.tm_min);
873ad5
 
873ad5
 	if (time_changed) {
873ad5
-		e_date_edit_update_time_entry (dedit);
873ad5
+		/* Do not call e_date_edit_update_time_entry (dedit); let the user correct the value */
873ad5
 		g_signal_emit (dedit, signals[CHANGED], 0);
873ad5
 	}
873ad5
 }
873ad5
@@ -2467,6 +2462,20 @@ e_date_edit_set_date_internal (EDateEdit
873ad5
 		}
873ad5
 	}
873ad5
 
873ad5
+	if (date_changed) {
873ad5
+		GtkEntry *entry;
873ad5
+
873ad5
+		entry = GTK_ENTRY (dedit->priv->date_entry);
873ad5
+
873ad5
+		if (priv->date_is_valid) {
873ad5
+			gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
873ad5
+			gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
873ad5
+		} else {
873ad5
+			gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_SECONDARY, "dialog-warning");
873ad5
+			gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY, _("Invalid Date Value"));
873ad5
+		}
873ad5
+	}
873ad5
+
873ad5
 	return date_changed;
873ad5
 }
873ad5
 
873ad5
@@ -2510,6 +2519,20 @@ e_date_edit_set_time_internal (EDateEdit
873ad5
 		}
873ad5
 	}
873ad5
 
873ad5
+	if (time_changed) {
873ad5
+		GtkEntry *entry;
873ad5
+
873ad5
+		entry = GTK_ENTRY (gtk_bin_get_child (GTK_BIN (dedit->priv->time_combo)));
873ad5
+
873ad5
+		if (priv->time_is_valid) {
873ad5
+			gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_PRIMARY, NULL);
873ad5
+			gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_PRIMARY, NULL);
873ad5
+		} else {
873ad5
+			gtk_entry_set_icon_from_icon_name (entry, GTK_ENTRY_ICON_PRIMARY, "dialog-warning");
873ad5
+			gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_PRIMARY, _("Invalid Time Value"));
873ad5
+		}
873ad5
+	}
873ad5
+
873ad5
 	return time_changed;
873ad5
 }
873ad5
 
873ad5
@@ -2561,3 +2584,13 @@ e_date_edit_get_entry (EDateEdit *dedit)
873ad5
 
873ad5
 	return GTK_WIDGET (dedit->priv->date_entry);
873ad5
 }
873ad5
+
873ad5
+gboolean
873ad5
+e_date_edit_has_focus (EDateEdit *dedit)
873ad5
+{
873ad5
+	g_return_val_if_fail (E_IS_DATE_EDIT (dedit), FALSE);
873ad5
+
873ad5
+	return gtk_widget_has_focus (GTK_WIDGET (dedit)) ||
873ad5
+		(dedit->priv->date_entry && gtk_widget_has_focus (dedit->priv->date_entry)) ||
873ad5
+		(dedit->priv->time_combo && gtk_widget_has_focus (dedit->priv->time_combo));
873ad5
+}
873ad5
diff -up evolution-3.28.5/src/e-util/e-dateedit.h.crash-empty-attendee evolution-3.28.5/src/e-util/e-dateedit.h
873ad5
--- evolution-3.28.5/src/e-util/e-dateedit.h.crash-empty-attendee	2020-05-15 12:24:41.256773643 +0200
873ad5
+++ evolution-3.28.5/src/e-util/e-dateedit.h	2020-05-15 12:24:47.068773299 +0200
873ad5
@@ -211,6 +211,8 @@ void		e_date_edit_set_get_time_callback
873ad5
 
873ad5
 GtkWidget *	e_date_edit_get_entry		(EDateEdit *dedit);
873ad5
 
873ad5
+gboolean	e_date_edit_has_focus		(EDateEdit *dedit);
873ad5
+
873ad5
 G_END_DECLS
873ad5
 
873ad5
 #endif /* E_DATE_EDIT_H */
214acd
diff -up evolution-3.28.5/src/modules/calendar/e-cal-shell-content.c.crash-empty-attendee evolution-3.28.5/src/modules/calendar/e-cal-shell-content.c
214acd
--- evolution-3.28.5/src/modules/calendar/e-cal-shell-content.c.crash-empty-attendee	2018-07-30 15:37:05.000000000 +0200
873ad5
+++ evolution-3.28.5/src/modules/calendar/e-cal-shell-content.c	2020-05-15 12:21:11.487786075 +0200
214acd
@@ -847,9 +847,9 @@ cal_shell_content_get_attendee_prop (ica
214acd
 	while (prop != NULL) {
214acd
 		const gchar *attendee;
214acd
 
214acd
-		attendee = icalproperty_get_attendee (prop);
214acd
+		attendee = itip_strip_mailto (icalproperty_get_attendee (prop));
214acd
 
214acd
-		if (g_str_equal (itip_strip_mailto (attendee), address))
214acd
+		if (attendee && g_ascii_strcasecmp (attendee, address) == 0)
214acd
 			return prop;
214acd
 
214acd
 		prop = icalcomponent_get_next_property (