summaryrefslogtreecommitdiff
path: root/databases/evolution-data-server/files
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2007-07-03 05:47:39 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2007-07-03 05:47:39 +0000
commit0c2e09e6f61cbd6ca26800bda1b89056951c04a7 (patch)
tree3f00699248a473b298dd170e1b60467116a6fe46 /databases/evolution-data-server/files
parent- Revert changes to patch-configure. It was slipped in when committing (diff)
Update to 1.10.3.
Notes
Notes: svn path=/head/; revision=194749
Diffstat (limited to 'databases/evolution-data-server/files')
-rw-r--r--databases/evolution-data-server/files/patch-camel_camel-object.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/databases/evolution-data-server/files/patch-camel_camel-object.c b/databases/evolution-data-server/files/patch-camel_camel-object.c
deleted file mode 100644
index 9aef5b739b64..000000000000
--- a/databases/evolution-data-server/files/patch-camel_camel-object.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- camel/camel-object.c.orig Wed Oct 18 15:53:34 2006
-+++ camel/camel-object.c Wed Oct 18 15:55:01 2006
-@@ -457,7 +457,7 @@
- }
-
- /* we batch up the properties and set them in one go */
-- if (!(argv = g_try_malloc ((gulong)(sizeof (*argv) + (count - CAMEL_ARGV_MAX) * sizeof (argv->argv[0])))))
-+ if (!(argv = g_try_malloc ((guint32)(sizeof (*argv) + (count - CAMEL_ARGV_MAX) * sizeof (argv->argv[0])))))
- return -1;
-
- argv->argc = 0;
-@@ -537,8 +537,8 @@
-
- count = g_slist_length(props);
-
-- arggetv = g_malloc0(sizeof(*arggetv) + (count - CAMEL_ARGV_MAX) * sizeof(arggetv->argv[0]));
-- argv = g_malloc0(sizeof(*argv) + (count - CAMEL_ARGV_MAX) * sizeof(argv->argv[0]));
-+ arggetv = g_malloc0((guint32)(sizeof(*arggetv) + (count - CAMEL_ARGV_MAX) * sizeof(arggetv->argv[0])));
-+ argv = g_malloc0((guint32)(sizeof(*argv) + (count - CAMEL_ARGV_MAX) * sizeof(argv->argv[0])));
- l = props;
- i = 0;
- while (l) {