[evolution-ews/gnome-3-8] cleanup: standardize includes_last_item check
- From: Fabiano Fidêncio <ffidencio src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-ews/gnome-3-8] cleanup: standardize includes_last_item check
- Date: Thu, 8 Aug 2013 15:15:31 +0000 (UTC)
commit 1c69c7599b267a11ca6f6d5d6c578e313e5eabeb
Author: Fabiano Fidêncio <fidencio redhat com>
Date: Thu Aug 8 16:18:52 2013 +0200
cleanup: standardize includes_last_item check
src/server/e-ews-connection.c | 30 +++++++++++++++++++++---------
1 files changed, 21 insertions(+), 9 deletions(-)
---
diff --git a/src/server/e-ews-connection.c b/src/server/e-ews-connection.c
index 552e54a..01c506b 100644
--- a/src/server/e-ews-connection.c
+++ b/src/server/e-ews-connection.c
@@ -603,15 +603,19 @@ sync_xxx_response_cb (ESoapParameter *subparam,
ESoapParameter *node;
gchar *new_sync_state = NULL, *value, *last;
GSList *items_created = NULL, *items_updated = NULL, *items_deleted = NULL;
- gboolean includes_last_item = TRUE;
+ gboolean includes_last_item;
node = e_soap_parameter_get_first_child_by_name (subparam, "SyncState");
new_sync_state = e_soap_parameter_get_string_value (node);
node = e_soap_parameter_get_first_child_by_name (subparam, last_tag);
last = e_soap_parameter_get_string_value (node);
- if (g_strcmp0 (last, "false") == 0)
- includes_last_item = FALSE;
+ /*
+ * Set the includes_last_item to TRUE as default.
+ * It can avoid an infinite loop in caller, when, for some reason,
+ * we don't receive the last_tag property from the server.
+ */
+ includes_last_item = g_strcmp0 (last, "false") != 0;
g_free (last);
node = e_soap_parameter_get_first_child_by_name (subparam, "Changes");
@@ -819,15 +823,19 @@ ews_handle_root_folder_param_items (ESoapParameter *subparam,
gchar *last, *total;
gint total_items;
EEwsItem *item;
- gboolean includes_last_item = FALSE;
+ gboolean includes_last_item;
node = e_soap_parameter_get_first_child_by_name (subparam, "RootFolder");
total = e_soap_parameter_get_property (node, "TotalItemsInView");
total_items = atoi (total);
g_free (total);
last = e_soap_parameter_get_property (node, "IncludesLastItemInRange");
- if (!strcmp (last, "true"))
- includes_last_item = TRUE;
+ /*
+ * Set the includes_last_item to TRUE as default.
+ * It can avoid an infinite loop in caller, when, for some reason,
+ * we don't receive the last_tag property from the server.
+ */
+ includes_last_item = g_strcmp0 (last, "false") != 0;
g_free (last);
node = e_soap_parameter_get_first_child_by_name (node, "Items");
@@ -7882,15 +7890,19 @@ ews_handle_root_folder_param_folders (ESoapParameter *subparam,
gchar *last, *total;
gint total_items;
EEwsFolder *folder;
- gboolean includes_last_item = FALSE;
+ gboolean includes_last_item;
node = e_soap_parameter_get_first_child_by_name (subparam, "RootFolder");
total = e_soap_parameter_get_property (node, "TotalItemsInView");
total_items = atoi (total);
g_free (total);
last = e_soap_parameter_get_property (node, "IncludesLastItemInRange");
- if (!strcmp (last, "true"))
- includes_last_item = TRUE;
+ /*
+ * Set the includes_last_item to TRUE as default.
+ * It can avoid an infinite loop in caller, when, for some reason,
+ * we don't receive the last_tag property from the server.
+ */
+ includes_last_item = g_strcmp0 (last, "false") != 0;
g_free (last);
node = e_soap_parameter_get_first_child_by_name (node, "Folders");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]