tags 381997 +patch thanks The patch made by Ben for 337872 was somehow not completely applied, and the line that erased the g_new0 redundant initialization was not deleted.
Deleting this line should fix the bug. Patch attached. -- Love, Marga.
diff -u drivel-2.0.3/src/xmlrpc.c drivel-2.0.3/src/xmlrpc.c --- drivel-2.0.3/src/xmlrpc.c +++ drivel-2.0.3/src/xmlrpc.c @@ -225,7 +225,6 @@ xmlNewTextChild (call, NULL, (xmlChar *)"methodName", (xmlChar *)name); /* build the params node */ - args = g_new0 (va_list, 1); va_start (args, name); params = xmlNewChild (call, NULL, (xmlChar *)"params", NULL); parse_parameter_types (args, params);