- Timestamp:
- 2010-05-16T09:50:57Z (15 years ago)
- Branches:
- master
- Children:
- 0b3ffb1
- Parents:
- d4bc2d9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar.c
rd4bc2d9 r2334048 1042 1042 } else if (args->reqclass & AIM_CAPS_ICQRTF) { 1043 1043 // TODO: constify 1044 char *text = g_strdup(args->info.rtfmsg.rtfmsg); 1044 char text[strlen(args->info.rtfmsg.rtfmsg)+1]; 1045 strncpy(text, args->info.rtfmsg.rtfmsg, sizeof(text)); 1045 1046 imcb_buddy_msg(ic, normalize(userinfo->sn), text, 0, 0); 1046 1047 }
Note: See TracChangeset
for help on using the changeset viewer.