[Evolution-hackers] Memory leak in Camel's CamelDiscoFolder's getv
- From: Philip Van Hoof <spam pvanhoof be>
- To: evolution-hackers <evolution-hackers gnome org>
- Subject: [Evolution-hackers] Memory leak in Camel's CamelDiscoFolder's getv
- Date: Wed, 26 Sep 2007 11:06:21 +0200
There's a memory leak in camel-disco-folder.c
static int
disco_getv(CamelObject *object, CamelException *ex, CamelArgGetV *args)
{
int i, count=0;
guint32 tag;
for (i=0;i<args->argc;i++) {
CamelArgGet *arg = &args->argv[i];
tag = arg->tag;
switch (tag & CAMEL_ARG_TAG) {
case CAMEL_OBJECT_ARG_PERSISTENT_PROPERTIES:
case CAMEL_FOLDER_ARG_PROPERTIES: {
CamelArgGetV props;
props.argc = 1;
props.argv[0] = *arg;
((CamelObjectClass *)parent_class)->getv(object, ex, &props);
---> *arg->ca_ptr = g_slist_concat(*arg->ca_ptr, g_slist_copy(disco_folder_properties));
break; }
/* disco args */
case CAMEL_DISCO_FOLDER_ARG_OFFLINE_SYNC:
*arg->ca_int = ((CamelDiscoFolder *)object)->offline_sync;
break;
default:
count++;
continue;
}
arg->tag = (tag & CAMEL_ARG_TYPE) | CAMEL_ARG_IGNORE;
}
if (count)
return ((CamelObjectClass *)parent_class)->getv(object, ex, args);
return 0;
}
==15153== 53,610 (11,989 direct, 41,621 indirect) bytes in 323 blocks are definitely lost in loss record 184 of 195
==15153== at 0x4020626: malloc (vg_replace_malloc.c:149)
==15153== by 0x4CECE9C: g_malloc (in /targets/w37/usr/lib/libglib-2.0.so.0.1200.12)
==15153== by 0x4CFD38A: g_slice_alloc (in /targets/w37/usr/lib/libglib-2.0.so.0.1200.12)
==15153== by 0x4CFDC51: g_slist_copy (in /targets/w37/usr/lib/libglib-2.0.so.0.1200.12)
==15153== by 0x4126F53: disco_getv (camel-disco-folder.c:205)
==15153== by 0x684ECFD: imap_getv (camel-imap-folder.c:761)
==15153== by 0x419E298: camel_object_get (camel-object.c:1574)
==15153== by 0x419E392: cobject_state_write (camel-object.c:517)
==15153== by 0x419EA69: camel_object_state_write (camel-object.c:1834)
==15153== by 0x4127459: disco_sync (camel-disco-folder.c:282)
==15153== by 0x413663B: camel_folder_sync (camel-folder.c:311)
==15153== by 0x414EB44: store_sync (camel-store.c:690)
--
Philip Van Hoof, software developer
home: me at pvanhoof dot be
gnome: pvanhoof at gnome dot org
http://www.pvanhoof.be/blog
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]