comparison src/protocols/oscar/bos.c @ 10990:8d74ae785a46

[gaim-migrate @ 12828] More compile warning getting rid of. Also fix the crash from my last batch of comile warning getting rid ofs. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 09 Jun 2005 04:33:52 +0000
parents 92cbf9713795
children
comparison
equal deleted inserted replaced
10989:b4919e8c634c 10990:8d74ae785a46
130 130
131 for (i = 0; (i < (listcount - 1)) && (i < 99); i++) { 131 for (i = 0; (i < (listcount - 1)) && (i < 99); i++) {
132 tmpptr = aimutil_itemindex(localcpy, i, '&'); 132 tmpptr = aimutil_itemindex(localcpy, i, '&');
133 133
134 aimbs_put8(&fr->data, strlen(tmpptr)); 134 aimbs_put8(&fr->data, strlen(tmpptr));
135 aimbs_putraw(&fr->data, tmpptr, strlen(tmpptr)); 135 aimbs_putstr(&fr->data, tmpptr);
136 136
137 free(tmpptr); 137 free(tmpptr);
138 } 138 }
139 free(localcpy); 139 free(localcpy);
140 140