aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-10-07 16:03:03 +0800
committerMilan Crha <mcrha@redhat.com>2009-10-07 16:03:03 +0800
commitadd2920ff519ff3ef898f10d357bd59b3e7531a4 (patch)
treebe8e53c742d7dce5dc05918ff60eb7a421575246
parent36e80a2c16fcd2586c0ec1d482897825ee8fbed5 (diff)
downloadgsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar
gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar.gz
gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar.bz2
gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar.lz
gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar.xz
gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar.zst
gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.zip
Bug #597564 - Invalid g_object_unref call in redo_queries
-rw-r--r--calendar/gui/e-cal-model.c37
-rw-r--r--calendar/gui/e-calendar-table.c2
2 files changed, 22 insertions, 17 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c
index 9d78274046..d4d2f020f9 100644
--- a/calendar/gui/e-cal-model.c
+++ b/calendar/gui/e-cal-model.c
@@ -1017,41 +1017,44 @@ static void
ecm_append_row (ETableModel *etm, ETableModel *source, gint row)
{
ECalModelClass *model_class;
- ECalModelComponent comp_data;
+ ECalModelComponent *comp_data;
ECalModel *model = (ECalModel *) etm;
g_return_if_fail (E_IS_CAL_MODEL (model));
g_return_if_fail (E_IS_TABLE_MODEL (source));
- memset (&comp_data, 0, sizeof (ECalModelComponent));
- comp_data.client = e_cal_model_get_default_client (model);
+ comp_data = g_object_new (E_TYPE_CAL_MODEL_COMPONENT, NULL);
+
+ comp_data->client = e_cal_model_get_default_client (model);
/* guard against saving before the calendar is open */
- if (!(comp_data.client && e_cal_get_load_state (comp_data.client) == E_CAL_LOAD_LOADED))
+ if (!(comp_data->client && e_cal_get_load_state (comp_data->client) == E_CAL_LOAD_LOADED)) {
+ g_object_unref (comp_data);
return;
+ }
- comp_data.icalcomp = e_cal_model_create_component_with_defaults (model, FALSE);
+ comp_data->icalcomp = e_cal_model_create_component_with_defaults (model, FALSE);
/* set values for our fields */
- set_categories (&comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_CATEGORIES, row));
- set_classification (&comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_CLASSIFICATION, row));
- set_description (&comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_DESCRIPTION, row));
- set_summary (&comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_SUMMARY, row));
+ set_categories (comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_CATEGORIES, row));
+ set_classification (comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_CLASSIFICATION, row));
+ set_description (comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_DESCRIPTION, row));
+ set_summary (comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_SUMMARY, row));
if (e_table_model_value_at (source, E_CAL_MODEL_FIELD_DTSTART, row)) {
- set_dtstart (model, &comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_DTSTART, row));
+ set_dtstart (model, comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_DTSTART, row));
} else if (model->priv->get_default_time) {
time_t tt = model->priv->get_default_time (model, model->priv->get_default_time_user_data);
if (tt > 0) {
struct icaltimetype itt = icaltime_from_timet_with_zone (tt, FALSE, e_cal_model_get_timezone (model));
- icalproperty *prop = icalcomponent_get_first_property (comp_data.icalcomp, ICAL_DTSTART_PROPERTY);
+ icalproperty *prop = icalcomponent_get_first_property (comp_data->icalcomp, ICAL_DTSTART_PROPERTY);
if (prop) {
icalproperty_set_dtstart (prop, itt);
} else {
prop = icalproperty_new_dtstart (itt);
- icalcomponent_add_property (comp_data.icalcomp, prop);
+ icalcomponent_add_property (comp_data->icalcomp, prop);
}
}
}
@@ -1059,18 +1062,20 @@ ecm_append_row (ETableModel *etm, ETableModel *source, gint row)
/* call the class' method for filling the component */
model_class = (ECalModelClass *) G_OBJECT_GET_CLASS (model);
if (model_class->fill_component_from_model != NULL) {
- model_class->fill_component_from_model (model, &comp_data, source, row);
+ model_class->fill_component_from_model (model, comp_data, source, row);
}
- if (!e_cal_create_object (comp_data.client, comp_data.icalcomp, NULL, NULL)) {
+ if (!e_cal_create_object (comp_data->client, comp_data->icalcomp, NULL, NULL)) {
g_warning (G_STRLOC ": Could not create the object!");
/* FIXME: show error dialog */
- icalcomponent_free (comp_data.icalcomp);
+ icalcomponent_free (comp_data->icalcomp);
+ g_object_unref (comp_data);
return;
}
- icalcomponent_free (comp_data.icalcomp);
+ icalcomponent_free (comp_data->icalcomp);
+ g_object_unref (comp_data);
g_signal_emit (G_OBJECT (model), signals[ROW_APPENDED], 0);
}
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c
index 59abdd5d77..483c032438 100644
--- a/calendar/gui/e-calendar-table.c
+++ b/calendar/gui/e-calendar-table.c
@@ -1570,7 +1570,7 @@ show_completed_rows (ECalModel *model, GList *clients_list, gchar *show_sexp, GP
if (!(e_cal_model_get_component_for_uid (model, id))) {
e_table_model_pre_change (E_TABLE_MODEL (model));
- comp_data = g_new0 (ECalModelComponent, 1);
+ comp_data = g_object_new (E_TYPE_CAL_MODEL_COMPONENT, NULL);
comp_data->client = g_object_ref (client);
comp_data->icalcomp = icalcomponent_new_clone (m->data);
e_cal_model_set_instance_times (comp_data,