summaryrefslogtreecommitdiff
path: root/databases/evolution-data-server/files/patch-camel_camel-object.c
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2006-02-19 22:12:27 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2006-02-19 22:12:27 +0000
commit3185a5b9a530ce315f8230d01013b66a7e22747a (patch)
treed732f924dc0575ccc02f46f8f775817ccd203e53 /databases/evolution-data-server/files/patch-camel_camel-object.c
parent- Preserv modified config files (diff)
Fix e-d-s so that it does not try to allocate all available memory on 64-bit
platforms. The fix committed is different from that in the PR since the purpose of this memory was not clarified by the Evolution developers. The fix committed casts the require memory size to an unsigned 32-bit integer. Since the memory required should never exceed the maximum capacity of an uint32_t, this is not a problem. Thanks to anholt for tracking down this problem. See http://bugzilla.gnome.org/show_bug.cgi?id=331099 for more details. PR: 93215
Diffstat (limited to 'databases/evolution-data-server/files/patch-camel_camel-object.c')
-rw-r--r--databases/evolution-data-server/files/patch-camel_camel-object.c22
1 files changed, 22 insertions, 0 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
new file mode 100644
index 000000000000..4eae9243f4bd
--- /dev/null
+++ b/databases/evolution-data-server/files/patch-camel_camel-object.c
@@ -0,0 +1,22 @@
+--- camel-object.c.orig Sun Feb 19 17:04:42 2006
++++ camel-object.c Sun Feb 19 17:06:06 2006
+@@ -454,7 +454,7 @@ cobject_state_read(CamelObject *obj, FIL
+ }
+
+ /* we batch up the properties and set them in one go */
+- if (!(argv = g_try_malloc (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;
+@@ -534,8 +534,8 @@ cobject_state_write(CamelObject *obj, FI
+
+ 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) {