# HG changeset patch # User Christian Hammond # Date 1085637061 0 # Node ID 9885420f049f80dc439cb8cea328f0efc54da0de # Parent d9640b38a65b412452cdc1940bfeda7372a4edd9 [gaim-migrate @ 9862] Fixed a bug in MSN's HTTP connect method. It would sometimes enter a state where it would send no new data, but would keep queueing data indefinitely. Patch by Andrew Wellington. committer: Tailor Script diff -r d9640b38a65b -r 9885420f049f ChangeLog --- a/ChangeLog Thu May 27 04:09:14 2004 +0000 +++ b/ChangeLog Thu May 27 05:51:01 2004 +0000 @@ -35,6 +35,8 @@ and make errors easier to interpret (Felipe Contreras) * Fixed a privacy-related bug in MSN that affected blocking/permitting, which was due to case-sensitive string comparisons (Gudmundur Olafsson) + * Fixed an MSN HTTP method bug where MSN would queue data indefinitely. + (Andrew Wellington). * ALT-F works correctly in the System Log Viewer (Stu Tomlinson) * New tabs should scroll correctly again (Tim Ringenbach) * Dialogs opened from a conversation window are now closed when diff -r d9640b38a65b -r 9885420f049f src/protocols/msn/httpmethod.c --- a/src/protocols/msn/httpmethod.c Thu May 27 04:09:14 2004 +0000 +++ b/src/protocols/msn/httpmethod.c Thu May 27 05:51:01 2004 +0000 @@ -118,8 +118,7 @@ g_return_val_if_fail(size > 0, 0); g_return_val_if_fail(servconn->http_data != NULL, 0); - if (servconn->http_data->waiting_response || - servconn->http_data->queue != NULL) + if (servconn->http_data->waiting_response) { MsnHttpQueueData *queue_data = g_new0(MsnHttpQueueData, 1);