Changes in / [5d9b792:0a69d7b]
- Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/http_client.c
r5d9b792 r0a69d7b 240 240 241 241 got_reply: 242 /* Maybe if the webserver is overloaded, or when there's bad SSL243 support... */244 if( req->bytes_read == 0 )245 goto cleanup;246 247 242 /* Zero termination is very convenient. */ 248 243 req->reply_headers[req->bytes_read] = 0; -
protocols/oscar/chat.c
r5d9b792 r0a69d7b 163 163 the right charset flags, as we also do with normal 164 164 messages. Hope this will work. :-) */ 165 /*166 165 if (flags & AIM_CHATFLAGS_UNICODE) 167 166 aimbs_put16(&fr->data, 0x0002); … … 172 171 173 172 aimbs_put16(&fr->data, 0x0000); 174 */175 173 176 174 /* -
protocols/oscar/oscar.c
r5d9b792 r0a69d7b 138 138 int i, j; 139 139 char *x = strchr(name, '-'); 140 if (!x) return g_strdup(name);140 if (!x) return NULL; 141 141 x = strchr(++x, '-'); 142 if (!x) return g_strdup(name);142 if (!x) return NULL; 143 143 tmp = g_strdup(++x); 144 144 … … 2607 2607 int ret; 2608 2608 static int chat_id = 0; 2609 char * chatname ;2610 2611 chatname = g_strdup_printf("%s%d", gc->username, chat_id++);2609 char * chatname = g_new0(char, strlen(gc->username)+4); 2610 2611 g_snprintf(chatname, strlen(gc->username) + 4, "%s%d", gc->username, chat_id++); 2612 2612 2613 2613 ret = oscar_chat_join(gc, chatname);
Note: See TracChangeset
for help on using the changeset viewer.