comparison src/blist.c @ 12687:88ccc3603163

[gaim-migrate @ 15030] I'm a stickler for getting rid of these crazy little things. A stickler to the last. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 03 Jan 2006 01:19:32 +0000
parents f1ee8a29bd69
children eda1572c788b
comparison
equal deleted inserted replaced
12686:5f65a0cca87c 12687:88ccc3603163
425 for (x = xmlnode_get_child(bnode, "setting"); x; x = xmlnode_get_next_twin(x)) { 425 for (x = xmlnode_get_child(bnode, "setting"); x; x = xmlnode_get_next_twin(x)) {
426 parse_setting((GaimBlistNode*)buddy, x); 426 parse_setting((GaimBlistNode*)buddy, x);
427 } 427 }
428 428
429 g_free(name); 429 g_free(name);
430 if (alias) 430 g_free(alias);
431 g_free(alias);
432 } 431 }
433 432
434 static void 433 static void
435 parse_contact(GaimGroup *group, xmlnode *cnode) 434 parse_contact(GaimGroup *group, xmlnode *cnode)
436 { 435 {
501 500
502 for (x = xmlnode_get_child(cnode, "setting"); x; x = xmlnode_get_next_twin(x)) { 501 for (x = xmlnode_get_child(cnode, "setting"); x; x = xmlnode_get_next_twin(x)) {
503 parse_setting((GaimBlistNode*)chat, x); 502 parse_setting((GaimBlistNode*)chat, x);
504 } 503 }
505 504
506 if (alias) 505 g_free(alias);
507 g_free(alias);
508 } 506 }
509 507
510 static void 508 static void
511 parse_group(xmlnode *groupnode) 509 parse_group(xmlnode *groupnode)
512 { 510 {