- Timestamp:
- 2010-08-05T20:20:44Z (14 years ago)
- Branches:
- master
- Children:
- bf2ebd8
- Parents:
- 65a4a64
- Location:
- protocols
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar.c
r65a4a64 rf7d12f7 1963 1963 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { 1964 1964 struct im_connection *ic = sess->aux_data; 1965 struct aim_ssi_item *curitem, *curgroup ;1965 struct aim_ssi_item *curitem, *curgroup = NULL; 1966 1966 int tmp; 1967 1967 char *nrm; … … 1980 1980 realname = aim_gettlv_str(curitem->data, 0x0131, 1); 1981 1981 1982 imcb_add_buddy(ic, nrm, curgroup ->gid == curitem->gid ? curgroup->name: NULL);1982 imcb_add_buddy(ic, nrm, curgroup ? (curgroup->gid == curitem->gid ? curgroup->name : NULL) : NULL); 1983 1983 1984 1984 if (realname) { -
protocols/yahoo/yahoo.c
r65a4a64 rf7d12f7 821 821 { 822 822 struct byahoo_conf_invitation *inv = data; 823 struct groupchat *b ;823 struct groupchat *b = NULL; 824 824 GSList *l; 825 825
Note: See TracChangeset
for help on using the changeset viewer.