evolution/abuild.patch

77 lines
2.2 KiB
Diff

=== modified file 'addressbook/gui/merging/eab-contact-merging.c'
--- addressbook/gui/merging/eab-contact-merging.c 2007-12-18 20:23:31 +0000
+++ addressbook/gui/merging/eab-contact-merging.c 2007-12-18 20:44:13 +0000
@@ -343,6 +343,7 @@
value = 1;
break;
case GTK_RESPONSE_CANCEL:
+ default:
value = 0;
break;
}
=== modified file 'calendar/conduits/calendar/calendar-conduit.c'
--- calendar/conduits/calendar/calendar-conduit.c 2007-12-18 20:23:31 +0000
+++ calendar/conduits/calendar/calendar-conduit.c 2007-12-18 20:44:13 +0000
@@ -840,6 +840,8 @@
static char record[0xffff];
#endif
+ memset(&p, 0, sizeof (p));
+
g_assert (local->comp != NULL);
g_assert (local->appt != NULL );
=== modified file 'calendar/conduits/memo/memo-conduit.c'
--- calendar/conduits/memo/memo-conduit.c 2007-12-18 20:23:31 +0000
+++ calendar/conduits/memo/memo-conduit.c 2007-12-18 20:44:13 +0000
@@ -473,6 +473,8 @@
static char record[0xffff];
#endif
+ memset(&p, 0, sizeof (p));
+
g_assert (local->comp != NULL);
g_assert (local->memo != NULL );
=== modified file 'calendar/conduits/todo/todo-conduit.c'
--- calendar/conduits/todo/todo-conduit.c 2007-12-18 20:23:31 +0000
+++ calendar/conduits/todo/todo-conduit.c 2007-12-18 20:44:13 +0000
@@ -621,6 +621,8 @@
memset (&p, 0, sizeof (GnomePilotRecord));
+ memset(&p, 0, sizeof (p));
+
p.ID = local->local.ID;
p.category = local->local.category;
p.attr = local->local.attr;
=== modified file 'plugins/exchange-operations/exchange-delegates-user.c'
--- plugins/exchange-operations/exchange-delegates-user.c 2007-12-18 20:23:31 +0000
+++ plugins/exchange-operations/exchange-delegates-user.c 2007-12-18 20:44:13 +0000
@@ -30,8 +30,11 @@
#include <mail/mail-component.h>
#include <mail/mail-send-recv.h>
#include <camel/camel-multipart.h>
+#include <camel/camel-mime-utils.h>
#include <camel/camel-stream-mem.h>
#include <exchange-account.h>
+#include "exchange-delegates.h"
+#include <exchange/exchange-account.h>
#include <e2k-global-catalog.h>
#include <e2k-marshal.h>
#include <e2k-sid.h>
@@ -51,6 +54,8 @@
#undef GTK_DISABLE_DEPRECATED
#include <gtk/gtkoptionmenu.h>
+#include <glib.h>
+
#include <string.h>