From 09b17320afb38fc5550f28200935df242c29bf07 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Thu, 15 Dec 2011 11:31:56 +0100 Subject: Bug #561696 - Invitation's "Open Calendar" button jumps to current day --- modules/calendar/e-cal-shell-backend.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/calendar') diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 6541863b32..399a5ea80c 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -558,7 +558,7 @@ cal_shell_backend_handle_uri_cb (EShellBackend *shell_backend, header = (gchar *) cp; header[header_len] = '\0'; - cp += header_len + 2; + cp += header_len + 1; content_len = strcspn (cp, "&"); @@ -579,10 +579,10 @@ cal_shell_backend_handle_uri_cb (EShellBackend *shell_backend, comp_rid = g_strdup (content); g_free (content); - cp += content_len + 1; + cp += content_len; if (*cp == '&') { cp++; - if (strcmp (cp, "amp;") == 0) + if (strncmp (cp, "amp;", 4) == 0) cp += 4; } } -- cgit v1.2.3